mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-05 08:25:59 -06:00
32 lines
612 B
HTML
32 lines
612 B
HTML
{{ partial "credit.html" }}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ .Language.Lang }}">
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
<div class="top">
|
|
{{ partial "top.html" . }}
|
|
</div>
|
|
|
|
{{ if not .IsHome }}
|
|
{{ partial "breadcrumb.html" . }}
|
|
{{ end }}
|
|
|
|
<div class="content">
|
|
{{ block "main" . }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ with .Site.Copyright }}
|
|
<footer>
|
|
<hr>
|
|
<small>
|
|
{{ . | safeHTML }}
|
|
</small>
|
|
</footer>
|
|
{{ end }}
|
|
</body>
|
|
|
|
</html>
|