blog/layouts/taxonomy/tag.html

29 lines
841 B
HTML

{{ define "main" }}
<main id="list">
<h1>
<span class="hidden-mobile">Posts tagged as </span><!--
--><span class="tag">{{ .Data.Term }}</span><!--
--><span class="show-mobile"> posts</span>
</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" }}
&nbsp;&middot;&nbsp;
{{ .ReadingTime }} minute read
</h3>
<p>
{{ .Summary }}
</p>
</section>
{{ end }}
</main>
{{ end }}