mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 23:09:47 +00:00
18 lines
484 B
HTML
18 lines
484 B
HTML
{{ define "title" }}
|
|
<h1 class="bold-title is-1">Tagged "{{ lower .Title }}"</h1>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<div class="container">
|
|
<article>
|
|
{{ .Content }}
|
|
</article>
|
|
<ul>
|
|
{{ range .Pages.ByPublishDate }}
|
|
<li>
|
|
<a href="{{.Permalink}}">{{.Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }} | {{.Title}}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|