25 lines
597 B
HTML
25 lines
597 B
HTML
{{ define "header" }}
|
|
{{ partialCached "header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<main class="site-main section-inner thin animated fadeIn faster">
|
|
<h1>{{ .Title }}</h1>
|
|
{{- if .Content }}
|
|
<div class="content">
|
|
{{ .Content }}
|
|
</div>
|
|
{{- end }}
|
|
{{- range .Pages }}
|
|
<article class="content" style="border-bottom: 2px solid $text;{{/* TODO move to stylesheet */}}">
|
|
<a href="{{.Params.blogUrl}}"><h2 class="title">{{.Title}}</h2></a>
|
|
<p>{{.Content}}</p>
|
|
</article>
|
|
{{- end }}
|
|
</main>
|
|
{{ end }}
|
|
|
|
{{ define "footer" }}
|
|
{{ partialCached "footer.html" . }}
|
|
{{ end }}
|