site.lyte.dev/layouts/_default/list.html

17 lines
266 B
HTML
Raw Permalink Normal View History

2020-07-14 16:47:54 -05:00
{{ define "main" }}
{{ .Content }}
2023-06-26 14:35:12 -05:00
2024-06-14 10:36:05 -05:00
<ul style="padding: 0;">
{{ range .Pages }}
{{ .Render "li" }}
{{ else }}
<p>Looks like there's nothing here!... yet!</p>
{{ end }}
</ul>
2023-06-26 14:35:12 -05:00
2020-07-14 16:47:54 -05:00
{{ end }}
{{ define "title" }}
{{ .Title }} - {{ .Site.Title }}
{{ end }}