site/themes/rb/layouts/index.html

10 lines
167 B
HTML
Raw Normal View History

2024-06-05 20:43:19 +02:00
{{ define "main" }}
{{ .Content }}
<h3>Latest blog posts</h3>
<ul id="posts">
2024-06-06 09:54:26 +02:00
{{ range first 15 .Site.RegularPages }}
2024-06-05 21:43:47 +02:00
{{ .Render "li" }}
{{ end }}
2024-06-05 20:43:19 +02:00
</ul>
{{ end }}