1
0
Fork 0
faulty.equipment/layouts/posts/list.html
Hamcha 5be237d554
All checks were successful
continuous-integration/drone/push Build is passing
colors!
2023-09-12 13:05:38 +02:00

15 lines
477 B
HTML

{{ define "main" }}
<h1>Blog</h1>
<p>Here is a list of my personal ranting from newest to oldest.</p>
<section class="post-list">
{{ range .Pages.ByPublishDate.Reverse }}
<article>
<time datetime="{{ .Date | time.Format "2006-01-02"}}">{{ .Date | time.Format "2006-01-02"}}</time> <a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ if .Params.tldr }}
<div class="summary">{{.Params.tldr|markdownify}}</div>
{{ end }}
</article>
{{ end }}
</section>
{{ end }}