18 lines
629 B
HTML
18 lines
629 B
HTML
{{ define "main" }}
|
|
<section>
|
|
<h1 class="sr-only">{{ .Title }}</h1>
|
|
<ul class="grid grid-cols-1 gap-4">
|
|
{{ range .Pages.ByDate.Reverse }}
|
|
<li class="border border-ctp-surface1 rounded-xl bg-ctp-base/70 px-4 py-3">
|
|
<a class="flex items-baseline justify-between gap-4 no-underline text-inherit" href="{{ .RelPermalink }}">
|
|
<span class="font-semibold">{{ .Title }}</span>
|
|
<time class="text-sm text-ctp-subtext0" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</section>
|
|
{{ end }}
|
|
|
|
|