aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/taxonomy.html
blob: 28147b93b2dca7f5803762ec20295f80b17f68caa525a066b0ee5e4d3f5b40e3 (plain)
1
2
3
4
5
6
7
8
9
10
{{ define "main" -}}
<main>
  <h1>All {{ .Type }}</h1>
  <ul class="list">
  {{- range .Data.Pages }}
    <li class="list__item"><a class="link" href="{{ .RelPermalink }}" rel="noreferrer">{{ emojify ":link:" }} {{ .Title }}</a></li>
  {{- end }}
  </ul>
</main>
{{- end }}