2015-12-08 07:30:52 +09:00
|
|
|
{{/*
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
|
|
*/}}
|
2018-01-02 19:32:41 +09:00
|
|
|
|
|
|
|
{{template "custom/body_inner_post" .}}
|
|
|
|
|
2015-03-08 05:12:13 +09:00
|
|
|
</div>
|
2018-01-02 19:32:41 +09:00
|
|
|
|
|
|
|
{{template "custom/body_outer_post" .}}
|
|
|
|
|
2018-09-07 11:59:06 +09:00
|
|
|
{{template "base/footer_content" .}}
|
2017-01-26 00:15:25 +09:00
|
|
|
{{if .RequireSimpleMDE}}
|
2020-11-11 04:16:30 +09:00
|
|
|
<script src="{{StaticUrlPrefix}}/js/easymde.js?v={{MD5 AppVer}}"></script>
|
2019-10-22 21:11:01 +09:00
|
|
|
<script src="{{StaticUrlPrefix}}/vendor/plugins/codemirror/addon/mode/loadmode.js"></script>
|
|
|
|
<script src="{{StaticUrlPrefix}}/vendor/plugins/codemirror/mode/meta.js"></script>
|
2017-01-26 00:15:25 +09:00
|
|
|
<script>
|
2020-11-28 08:01:33 +09:00
|
|
|
CodeMirror.modeURL = '{{StaticUrlPrefix}}/vendor/plugins/codemirror/mode/%N/%N.js';
|
2017-01-26 00:15:25 +09:00
|
|
|
</script>
|
|
|
|
{{end}}
|
|
|
|
|
2015-12-08 07:30:52 +09:00
|
|
|
<!-- Third-party libraries -->
|
2018-05-19 23:12:37 +09:00
|
|
|
{{if .RequireU2F}}
|
2019-10-22 21:11:01 +09:00
|
|
|
<script src="{{StaticUrlPrefix}}/vendor/plugins/u2f/index.js"></script>
|
2018-05-19 23:12:37 +09:00
|
|
|
{{end}}
|
2018-07-05 13:13:05 +09:00
|
|
|
{{if .EnableCaptcha}}
|
|
|
|
{{if eq .CaptchaType "recaptcha"}}
|
2019-05-02 22:09:39 +09:00
|
|
|
<script src='{{ URLJoin .RecaptchaURL "api.js"}}' async></script>
|
2018-07-05 13:13:05 +09:00
|
|
|
{{end}}
|
2020-10-03 12:37:53 +09:00
|
|
|
{{if eq .CaptchaType "hcaptcha"}}
|
|
|
|
<script src='https://hcaptcha.com/1/api.js' async></script>
|
|
|
|
{{end}}
|
2018-07-05 13:13:05 +09:00
|
|
|
{{end}}
|
2019-10-22 21:11:01 +09:00
|
|
|
<script src="{{StaticUrlPrefix}}/js/index.js?v={{MD5 AppVer}}"></script>
|
2017-12-03 09:26:06 +09:00
|
|
|
{{template "custom/footer" .}}
|
2017-01-26 00:15:25 +09:00
|
|
|
</body>
|
2017-09-16 18:04:27 +09:00
|
|
|
</html>
|