abdullahtarawneh.com/layouts/blog/single.html

28 lines
763 B
HTML
Raw Normal View History

2024-03-13 06:54:20 +00:00
{{ define "main" }}
2024-06-02 05:04:04 +00:00
<main class="blog single">
2024-06-03 12:39:43 +00:00
<article class="h-entry hentry">
2024-03-13 06:54:20 +00:00
<header>
2024-06-03 12:39:43 +00:00
<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>
2024-03-13 06:54:20 +00:00
</header>
2024-06-03 12:39:43 +00:00
<section class="e-content entry-content">
2024-03-13 06:54:20 +00:00
{{ .Content }}
</section>
2024-03-21 23:04:33 +00:00
<footer>
2024-06-03 12:39:43 +00:00
<div class="container">
{{ partial "page/series-nav.html" . }}
2024-03-21 23:04:33 +00:00
</div>
</footer>
2024-03-13 06:54:20 +00:00
</article>
</main>
{{ end }}