hugo-rottenwheel/layouts/index.html
Kumi 04bede3d3f
Some checks failed
Build and Deploy Hugo Site / build (push) Has been cancelled
fix: update link paths to relative URLs in post listings
Switched from absolute to relative permalinks to ensure more flexible navigation and better support for different environments (clearnet/.onion). This change prevents broken links in environments where the site domain may differ.
2024-07-25 21:14:13 +02:00

15 lines
No EOL
298 B
HTML

{{ define "main" }}
<p>
RSS feed <a href="/index.xml">here</a>.
</p>
<h2>Latest Posts</h2>
<ul>
{{ range where .Site.RegularPages "Section" "posts" }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a> - {{ .Date.Format "2006-01-02" }}
</li>
{{ end }}
</ul>
{{ end }}