1
0
Fork 0
ejv2.cc/themes/dead-simple/layouts/_default/list.html
2024-08-01 06:21:40 +01:00

20 lines
545 B
HTML

{{ partial "header.html" . }}
<div class="home-content">{{ .Content }}</div>
{{ if .IsHome }}
<!--TODO: replace with faster search-->
{{ partial "search-form.html" . }}
<ul id="results"></ul>
{{ range .Sections }}
<h2 class="section-title">{{ .CurrentSection.Title }}</h2>
{{ .CurrentSection.Content }}
{{ partial "post_list.html" . }}
{{ end }}
{{ else }}
<h2 class="section-title">{{ .CurrentSection.Title }}</h2>
{{ partial "post_list.html" . }}
{{ end }}
{{ partial "footer.html" . }}