bobatheme/layouts/_default/baseof.html

28 lines
526 B
HTML
Raw Normal View History

{{ partial "credit.html" }}
2021-09-25 20:52:01 -05:00
<!DOCTYPE html>
<html lang="{{ .Language.Lang }}">
2021-09-25 20:52:01 -05:00
{{- partial "head.html" . -}}
<body>
2021-10-02 16:22:52 -05:00
<div class="top">
{{ partial "top.html" . }}
2021-10-02 16:22:52 -05:00
</div>
2021-10-01 14:12:39 -05:00
<div class="content">
{{- block "main" . }}
{{ .Content }}
{{- end }}
2021-09-25 20:52:01 -05:00
</div>
2021-10-17 20:17:12 -05:00
{{ with .Site.Copyright }}
<footer>
<hr>
<small>
{{ . | safeHTML }}
</small>
2021-10-17 20:17:12 -05:00
</footer>
{{ end }}
2021-09-25 20:52:01 -05:00
</body>
</html>