abdullahtarawneh.com/layouts/taxonomy/tag.html
2024-03-14 18:29:33 -05:00

20 lines
525 B
HTML

{{ define "main" }}
<main>
<header class="section">
<div class="container">
<h1>Content tagged <span style="font-family: monospace">{{.Name}}</span></h1>
</div>
</header>
<section class="section">
<div class="container">
<ul>
{{ range .Data.Pages }}
<li>
<a href="{{.RelPermalink}}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</div>
</section>
</main>
{{ end }}