mirror of
https://github.com/rottenwheel/hugo-rottenwheel.git
synced 2024-11-09 20:20:04 +00:00
Merge pull request #3 from kumitterer/main
Some checks failed
Build and Deploy Hugo Site / build (push) Has been cancelled
Some checks failed
Build and Deploy Hugo Site / build (push) Has been cancelled
fix: update link paths to relative URLs in post listings
This commit is contained in:
commit
3acfa76d7c
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
{{ range where .Site.RegularPages "Section" "posts" }}
|
{{ range where .Site.RegularPages "Section" "posts" }}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ .Permalink }}">{{ .Title }}</a> - {{ .Date.Format "2006-01-02" }}
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a> - {{ .Date.Format "2006-01-02" }}
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in a new issue