hugo-rottenwheel/layouts/index.html
Kumi bd33e958ac
chore: update blog title and simplify homepage layout
Updated the title across the website from "rottenwheel" to "rottenblog". Also removed title and description elements from the homepage layout.
2024-07-15 08:41:18 +02:00

11 lines
No EOL
241 B
HTML

{{ define "main" }}
<h2>Latest Posts</h2>
<ul>
{{ range where .Site.RegularPages "Section" "posts" }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a> - {{ .Date.Format "2006-01-02" }}
</li>
{{ end }}
</ul>
{{ end }}