portfolio/themes/naej-ananke/layouts/_default/taxonomy.html

18 lines
540 B
HTML
Raw Normal View History

2020-07-05 19:29:18 +00:00
{{ define "main" }}
<article class="cf pa3 pa4-m pa4-l">
<div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img mid-gray">
<p>{{i18n "taxonomyPageList" .}}</p>
</div>
</article>
2020-07-07 22:23:48 +00:00
<div class="center">
2020-07-05 19:29:18 +00:00
<section class="flex-ns flex-wrap justify-around mt5">
2020-07-07 22:23:48 +00:00
{{/* List of articles with the tag */}}
2020-07-05 19:29:18 +00:00
{{ range .Pages }}
2020-07-07 22:23:48 +00:00
<div class="relative w-100 w-30-l mb4">
{{ .Render "summary" }}
2020-07-05 19:29:18 +00:00
</div>
{{ end }}
</section>
</div>
{{ end }}