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