abdullahtarawneh.com/layouts/blog/single.html
2024-06-03 07:39:43 -05:00

28 lines
763 B
HTML

{{ define "main" }}
<main class="blog single">
<article class="h-entry hentry">
<header>
<div class="container">
<h1 class="p-name entry-title">{{ .Title }}</h1>
<p class="p-summary entry-summary">{{.Summary}}</p>
{{ partial "page/author.html" . }}
{{ partial "page/date.html" . }}
{{ partial "page/wordcount.html" . }}
{{ partial "page/categories.html" .}}
{{ partial "page/tags-list.html" . }}
{{ partial "page/series-list.html" . }}
{{ partial "page/toc.html" . }}
</div>
</header>
<section class="e-content entry-content">
{{ .Content }}
</section>
<footer>
<div class="container">
{{ partial "page/series-nav.html" . }}
</div>
</footer>
</article>
</main>
{{ end }}