Files
jadudcom-2025/jadudcom/layouts/shortcodes/listofposts.html
2025-09-18 07:16:19 -04:00

8 lines
227 B
HTML

{{ $tag := .Get 0 }}
{{ $articles := (.Site.RegularPages.RelatedTo (keyVals "tags" $tag)).ByDate.Reverse }}
<ul>
{{range $articles }}
<li><a href="{{.Permalink}}">{{.Title}}</a><br>{{.Param "blurb"}}</li>
{{end}}
</ul>