abdullahtarawneh.com/layouts/taxonomy/tag.html

20 lines
402 B
HTML
Raw Normal View History

2020-10-16 20:00:32 +00:00
{{ 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>
2020-10-16 20:00:32 +00:00
</main>
{{ end }}