mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-04-16 05:38:33 +02:00
19 lines
339 B
HTML
19 lines
339 B
HTML
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<div style="margin-bottom: 2rem;"></div>
|
|
|
|
<section class="posts-list">
|
|
{{ range .Pages.ByDate.Reverse }}
|
|
{{ partial "main/dates.html" . }}
|
|
<h2 class="term-post-title">
|
|
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
|
</h2>
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ end }}
|