2021-10-12 12:11:35 -06:00
{{ if false }}
{{ / * to make html structure "likely" complete to prevent IDE warnings * / }}
2015-12-07 15:30:52 -07:00
<html>
<body>
<div>
2021-10-12 12:11:35 -06:00
{{ end }}
2018-01-02 03:32:41 -07:00
{{ template "custom/body_inner_post" . }}
2015-03-07 13:12:13 -07:00
</div>
2018-01-02 03:32:41 -07:00
{{ template "custom/body_outer_post" . }}
2018-09-06 20:59:06 -06:00
{{ template "base/footer_content" . }}
2017-01-25 08:15:25 -07:00
2015-12-07 15:30:52 -07:00
<!-- Third-party libraries -->
2018-07-04 22:13:05 -06:00
{{ if .EnableCaptcha }}
{{ if eq .CaptchaType "recaptcha" }}
2019-05-02 07:09:39 -06:00
<script src=' {{ URLJoin .RecaptchaURL "api.js" }} ' async></script>
2018-07-04 22:13:05 -06:00
{{ end }}
2020-10-02 21:37:53 -06:00
{{ if eq .CaptchaType "hcaptcha" }}
<script src='https://hcaptcha.com/1/api.js' async></script>
{{ end }}
2018-07-04 22:13:05 -06:00
{{ end }}
2022-08-23 06:58:04 -06:00
<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 and the ROOT_URL setting in app.ini is correct.')"></script>
2017-12-02 17:26:06 -07:00
{{ template "custom/footer" . }}
2017-01-25 08:15:25 -07:00
</body>
2017-09-16 03:04:27 -06:00
</html>