some list styling

This commit is contained in:
2025-10-30 02:56:45 +01:00
parent 3eb0796b3b
commit ee63eeddb2
15 changed files with 96 additions and 28 deletions
+11 -2
View File
@@ -1,10 +1,19 @@
{{ define "main" }}
{{ .Title }}
<h1>{{ .Title }}</h1>
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
<div class="blogpost">
<div class="blogpost-content">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
<span>{{ .Date | time.Format "January 2, 2006" }}</span>
</div>
<div>
<span>{{ .Description }}</span>
</div>
</div>
{{ end }}
</ul>