34 lines
614 B
HTML
34 lines
614 B
HTML
{{ define "header" }}
|
|
{{ partial "header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<header class="page">
|
|
<h1>{{ .Title }}</h1>
|
|
</header>
|
|
|
|
{{ partial "table_of_contents.html" . }}
|
|
{{ partial "ruby_controls.html" . }}
|
|
|
|
{{- $hasContent := false -}}
|
|
{{ with .Content }}
|
|
{{- $hasContent = true -}}
|
|
{{ . }}
|
|
{{ end }}
|
|
|
|
{{ if .Params.posts | default true }}
|
|
{{ if and $hasContent }}
|
|
<h2>Posts</h2>
|
|
{{ end }}
|
|
|
|
<ul>
|
|
{{- range .Pages -}}
|
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
|
{{- end -}}
|
|
</ul>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ define "footer" }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|