20 lines
545 B
HTML
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" . }}
|