mirror of
https://github.com/andrewgioia/blog.git
synced 2024-11-14 20:44:47 +00:00
21 lines
439 B
HTML
21 lines
439 B
HTML
{{ define "title" }}
|
|
{{ .Title }} – {{ .Site.Title }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<main id="post" aria-role="main">
|
|
<aside>
|
|
<h1>
|
|
{{ .Title }}
|
|
</h1>
|
|
<time>
|
|
{{ .PublishDate.Format "January 2, 2006" }}
|
|
</time>
|
|
</aside>
|
|
<article>
|
|
{{ .Content }}
|
|
</article>
|
|
</main>
|
|
{{ .TableOfContents }}
|
|
<a id="top" class="arrow back" href="#">To the top!</a>
|
|
{{ end }} |