2021-10-12 23:41:35 +05:30
{{ if false }}
{{ / * to make html structure "likely" complete to prevent IDE warnings * / }}
2015-12-08 04:00:52 +05:30
<html>
<body>
<div>
2021-10-12 23:41:35 +05:30
{{ end }}
2018-01-02 16:02:41 +05:30
{{ template "custom/body_inner_post" . }}
2015-03-08 01:42:13 +05:30
</div>
2018-01-02 16:02:41 +05:30
{{ template "custom/body_outer_post" . }}
2018-09-07 08:29:06 +05:30
{{ template "base/footer_content" . }}
2017-01-25 20:45:25 +05:30
2015-12-08 04:00:52 +05:30
<!-- Third-party libraries -->
2018-07-05 09:43:05 +05:30
{{ if .EnableCaptcha }}
{{ if eq .CaptchaType "recaptcha" }}
2023-02-05 12:59:03 +05:30
<script src=' {{ URLJoin .RecaptchaURL "api.js" }} '></script>
2018-07-05 09:43:05 +05:30
{{ end }}
2020-10-03 09:07:53 +05:30
{{ if eq .CaptchaType "hcaptcha" }}
2023-02-05 12:59:03 +05:30
<script src='https://hcaptcha.com/1/api.js'></script>
{{ end }}
{{ if eq .CaptchaType "cfturnstile" }}
<script src='https://challenges.cloudflare.com/turnstile/v0/api.js'></script>
2020-10-03 09:07:53 +05:30
{{ end }}
2018-07-05 09:43:05 +05:30
{{ end }}
2023-01-18 07:06:40 +05:30
<script src=" {{ AssetUrlPrefix }} /js/index.js?v= {{ AssetVersion }} " onerror="alert('Failed to load asset files from ' + this.src + '. Please make sure the asset files can be accessed.')"></script>
2023-08-08 06:52:47 +05:30
{{ template "custom/footer" . }}
{{ ctx .DataRaceCheck $ .Context }}
2017-01-25 20:45:25 +05:30
</body>
2017-09-16 14:34:27 +05:30
</html>