erynwells.me/layouts/simple/single.html

22 lines
406 B
HTML
Raw Normal View History

2022-09-25 07:45:47 -07:00
{{ define "header" }}
{{ partial "header.html" . }}
{{ end }}
2021-10-06 09:25:45 -07:00
2022-09-25 07:45:47 -07:00
{{ define "main" }}
2021-10-06 09:25:45 -07:00
<article class="post-single">
2022-09-25 07:45:47 -07:00
<header>
{{ partial "development/draft_tag.html" . }}
<div class="post-title">
<h1>{{ .Title }}</h1>
</div>
2021-10-06 09:25:45 -07:00
</header>
<section class="post-content">
{{ .Content }}
</section>
</article>
2022-09-25 07:45:47 -07:00
{{ end }}
2021-10-06 09:25:45 -07:00
2022-09-25 07:45:47 -07:00
{{ define "footer" }}
{{ partial "footer.html" . }}
2021-10-06 09:25:45 -07:00
{{ end }}