mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-09 15:14:32 +00:00
Clean up templates, remove various CSS patches. By the way, fix incorrect NewRequest URLs in tests.
19 lines
552 B
Handlebars
19 lines
552 B
Handlebars
{{if false}}
|
|
{{/* to make html structure "likely" complete to prevent IDE warnings */}}
|
|
<html>
|
|
<body>
|
|
<div>
|
|
{{end}}
|
|
|
|
{{template "custom/body_inner_post" .}}
|
|
</div>
|
|
{{template "custom/body_outer_post" .}}
|
|
{{template "base/footer_content" .}}
|
|
{{ctx.ScriptImport "js/index.js" "module"}}
|
|
{{template "custom/footer" .}}
|
|
<script nonce="{{ctx.CspScriptNonce}}" type="module">
|
|
if (!window.config?.frontendInited && window.config?.runModeIsProd) alert("Frontend is not initialized, check console errors or asset files.");
|
|
</script>
|
|
</body>
|
|
</html>
|