mirror of
https://github.com/andrewgioia/blog.git
synced 2024-11-14 20:44:47 +00:00
27 lines
708 B
HTML
27 lines
708 B
HTML
|
{{ define "main" }}
|
||
|
<main id="list">
|
||
|
<h1>
|
||
|
Posts tagged as {{ .Data.Term }}
|
||
|
</h1>
|
||
|
|
||
|
{{ range .Data.Pages }}
|
||
|
<section>
|
||
|
<h2>
|
||
|
<a href="{{ .RelPermalink }}" class="wa link">
|
||
|
<span>{{ .Title }}</span>
|
||
|
<b class="arrow"></b>
|
||
|
</a>
|
||
|
</h2>
|
||
|
<h3>
|
||
|
Written by {{ .Params.author }} on {{ .PublishDate.Format "January 1, 2006" }}
|
||
|
·
|
||
|
{{ .ReadingTime }} minute read
|
||
|
</h3>
|
||
|
<p>
|
||
|
{{ .Summary }}
|
||
|
</p>
|
||
|
</section>
|
||
|
{{ end }}
|
||
|
</main>
|
||
|
|
||
|
{{ end }}
|