bobatheme/layouts/_default/single.html

19 lines
288 B
HTML
Raw Normal View History

2021-09-25 20:52:01 -05:00
{{ define "main" }}
2021-10-02 16:22:52 -05:00
<div class="post-title">
<h1>{{ .Title | markdownify }}</h1>
</div>
{{ partial "post-metadata.html" . }}
2021-10-01 14:12:39 -05:00
{{ if .Params.Toc }}
<div id="table-of-contents">
<h2>Table of Contents</h2>
2021-10-01 14:12:39 -05:00
{{ .TableOfContents }}
</div>
{{ end }}
<hr>
2021-09-25 20:52:01 -05:00
{{ .Content }}
{{ end }}