mirror of
https://github.com/andrewgioia/blog.git
synced 2024-12-22 18:39:55 +00:00
27 lines
508 B
HTML
27 lines
508 B
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>
|
|
</aside>
|
|
<article>
|
|
{{ .Content }}
|
|
</article>
|
|
</main>
|
|
|
|
<footer class="border">
|
|
<section class="pb">
|
|
Last edited on {{ .Lastmod.Format "January 2, 2006" }}.
|
|
</section>
|
|
</footer>
|
|
|
|
{{ end }} |