2022-08-18 15:20:15 -04:00

20 lines
547 B
HTML

{{- define "main" -}}
{{- $paginator := .Paginator -}}
{{- $title := T .Title -}}
{{- if not $title -}}
{{- $title = .Title -}}
{{- end -}}
<section class="article header"><h1>{{- $title -}}</h1></section>
{{- if .Content -}}
<article class="article markdown-body">
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
{{- .Content -}}
</article>
{{- end -}}
<!-- Ranges through content/posts/*.md -->
{{- partial "note-list.html" $paginator -}}
{{- partial "pagination.html" $paginator -}}
{{- end -}}