mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-05 00:15:59 -06:00
29 lines
635 B
HTML
29 lines
635 B
HTML
{{ partial "credit.html" }}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{{- partial "head.html" . -}}
|
|
|
|
<body>
|
|
{{- partial "header.html" . -}}
|
|
{{ partial "navbar.html" . }}
|
|
|
|
<div class="page">
|
|
{{ if and (ne .Params.Toc false) .IsPage }}
|
|
<div class="side">
|
|
<h3>Table of Contents</h3>
|
|
{{ .TableOfContents }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
<div class="main">
|
|
{{- block "main" . }}
|
|
{{ .Content }}
|
|
{{- end }}
|
|
</div>
|
|
</div>
|
|
|
|
{{- partial "footer.html" . -}}
|
|
</body>
|
|
|
|
</html>
|