a
2247ee2776
still missing some things but they were missing before anyway. so it's probably better to just push and deploy already. Reviewed-on: #1
28 lines
763 B
HTML
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 }}
|