2021-09-25 20:52:01 -05:00
|
|
|
{{ define "main" }}
|
2021-10-02 16:22:52 -05:00
|
|
|
<div class="post-title">
|
2021-10-10 17:28:05 -05:00
|
|
|
<h1>
|
|
|
|
{{ .Title | markdownify }}
|
2021-10-11 21:35:16 -05:00
|
|
|
{{ if .Draft }}{{ partial "icon.html" "edit" }}{{ end }}
|
2021-10-10 17:28:05 -05:00
|
|
|
</h1>
|
2021-10-02 16:22:52 -05:00
|
|
|
</div>
|
2021-09-27 14:16:52 -05:00
|
|
|
|
2021-10-09 18:08:27 -05:00
|
|
|
{{ partial "post-metadata.html" . }}
|
2021-09-27 14:16:52 -05:00
|
|
|
|
2021-10-01 14:12:39 -05:00
|
|
|
{{ if .Params.Toc }}
|
|
|
|
<div id="table-of-contents">
|
2021-10-11 18:24:14 -05:00
|
|
|
<h2>{{ i18n "table_of_contents" }}</h2>
|
2021-10-01 14:12:39 -05:00
|
|
|
{{ .TableOfContents }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
2021-10-09 20:33:42 -05:00
|
|
|
<hr>
|
|
|
|
|
2021-10-19 14:01:35 -05:00
|
|
|
{{ with .Resources.GetMatch "feature" }}
|
|
|
|
{{ partial "featured_media.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
2021-09-25 20:52:01 -05:00
|
|
|
{{ .Content }}
|
|
|
|
{{ end }}
|