blog/layouts/posts/single.html

46 lines
1.0 KiB
HTML

{{ define "title" }}
{{ .Title }} – {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<main id="post" aria-role="main">
<aside>
{{ with (.Params.banner) }}
<img src="{{ . }}" id="banner">
{{ end }}
<h1>
{{ .Title }}
</h1>
<time>
{{ .PublishDate.Format "January 2, 2006" }}
</time>
</aside>
<article>
{{ .Content }}
</article>
</main>
<footer id="byline" class="border">
<section>
<i class="icon icon-feather"></i>&nbsp;
<span>Written by {{ .Params.author }}</span>
<span>on {{ .PublishDate.Format "January 2, 2006" }}.</span>
</section>
{{ with (.Params.tags) }}
<ul id="tags" class="tags">
{{ range . }}
<li>
<a href="{{ "tags/" | absURL }}{{ . | urlize }}">{{ . }}</a>
</li>
{{ end }}
</ul>
{{ end }}
<a id="top" class="arrow back" href="#">To the top!</a>
</footer>
<div id="toc">
{{ .TableOfContents }}
</div>
{{ end }}