1
0
Fork 0
faulty.equipment/layouts/posts/list.html
Hamcha 4a65520db6
All checks were successful
continuous-integration/drone/push Build is passing
add cad shootout
2023-09-11 17:02:41 +02:00

10 lines
343 B
HTML

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