blog/hugo/layouts/index.html

17 lines
414 B
HTML
Raw Permalink Normal View History

2023-07-15 20:10:41 -04:00
{{ define "main" }}
<article>
2023-07-21 22:46:10 -04:00
<div class="text-center m-4">
2023-07-15 20:10:41 -04:00
{{ .Content }}
2023-07-21 22:46:10 -04:00
</div>
<p class="text-center">Under construction. Come back later! :)</p>
<div>
<h4>Recent posts</h4>
2023-07-15 20:10:41 -04:00
{{ range .Pages }}
{{ range .Pages }}
{{ partial "postcard" . }}
{{ end }}
{{ end }}
2023-07-21 22:46:10 -04:00
</div>
2023-07-15 20:10:41 -04:00
</article>
{{ end }}