redstrate.com/themes/red/layouts/_default/shrines.html

19 lines
448 B
HTML
Raw Normal View History

2024-02-19 14:39:10 -05:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
{{ .Content }}
<ul>
{{ range .Data.Pages.ByDate.Reverse }}
<li>
{{ $url := printf "icons/%s.png" .Slug }}
{{ with resources.Get $url }}
<img alt="Icon" width="16" height="16" src="{{ .RelPermalink }}">
{{ end }}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
2024-02-19 14:39:10 -05:00
{{ end }}
</ul>
{{ end }}