home/layouts/_default/list.html

26 lines
553 B
HTML
Raw Normal View History

2024-08-27 23:06:37 +00:00
{{ partial "header.html" . }}
<div class="content-wrapper">
{{if not .IsHome }}
<h1>{{ .Title | markdownify }}</h1>
2024-08-28 18:24:07 +00:00
{{ end }}
2024-08-27 23:06:37 +00:00
{{ .Content }}
2024-08-28 18:24:07 +00:00
<!--
{{if not .IsHome }}
2024-08-27 23:06:37 +00:00
<ul>
{{ $pages := .Pages }}
{{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
{{ range (where $pages "Section" "!=" "") }}
<li>
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
</li>
{{ end }}
</ul>
2024-08-28 18:24:07 +00:00
{{ end }}
-->
2024-08-27 23:06:37 +00:00
</div>
{{ partial "footer.html" . }}