This repository has been archived on 2022-01-14. You can view files and clone it, but cannot push or open issues/pull-requests.
nwt/layouts/_default/baseof.html

19 lines
477 B
HTML

<!DOCTYPE html>
<html>
{{- partial "head.html" . }}
{{ partial "head-custom.html" . -}}
<body>
<header>{{ partial "header.html" . }}</header>
<div id="content">
{{- block "main" . }}{{- end }}
{{ partial "docscomments.html" . }}
</div>
<footer>{{ partial "footer.html" . -}}</footer>
{{- $newtabjs := resources.Get "/js/new-tabs.js" | js.Build "/js/new-tabs.js" | minify | fingerprint }}
<script src="{{ $newtabjs.Permalink }}"></script>
</body>
</html>