bobatheme/layouts/_default/baseof.html

32 lines
644 B
HTML
Raw Normal View History

{{ partial "credit.html" }}
2021-09-25 20:52:01 -05:00
<!DOCTYPE html>
<html lang="{{ .Language.Lang }}">
2021-11-20 18:30:26 -06:00
{{ partial "head.html" . }}
2021-09-25 20:52:01 -05:00
<body>
2021-10-02 16:22:52 -05:00
<div class="top">
{{ partial "top.html" . }}
2021-10-02 16:22:52 -05:00
</div>
{{ if not .IsHome }}
{{ partial "breadcrumb.html" . }}
{{ end }}
2021-10-01 14:12:39 -05:00
<div class="content">
2021-11-20 18:30:26 -06:00
{{ block "main" . }}
{{ .Content }}
2021-11-20 18:30:26 -06:00
{{ 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>
</footer>
2021-10-17 20:17:12 -05:00
{{ end }}
2021-09-25 20:52:01 -05:00
</body>
</html>