devlog/themes/cuqui/layouts/_default/home.html

10 lines
266 B
HTML
Raw Normal View History

2024-11-13 21:14:37 +00:00
{{ define "main" }}
{{ .Content }}
2024-11-15 15:12:36 +00:00
<h1>Latest...</h1>
2024-11-15 12:16:56 +00:00
{{ range collections.First 1 site.RegularPages }}
2024-11-13 21:14:37 +00:00
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
2024-11-15 12:16:56 +00:00
<a href="{{ .RelPermalink }}">Read more...</a>
2024-11-13 21:14:37 +00:00
{{ end }}
{{ end }}