2022-10-10 13:02:23 -07:00
|
|
|
{{ define "header" }}
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "main" }}
|
2023-09-26 09:37:04 -07:00
|
|
|
<header>
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
</header>
|
2022-10-10 13:02:23 -07:00
|
|
|
|
2023-09-26 09:37:04 -07:00
|
|
|
{{ partial "ruby_controls.html" . }}
|
2023-04-23 22:02:11 +09:00
|
|
|
|
2023-09-26 09:37:04 -07:00
|
|
|
{{- $hasContent := false -}}
|
|
|
|
{{ with .Content }}
|
|
|
|
{{- $hasContent = true -}}
|
|
|
|
{{ . }}
|
2023-04-23 22:07:27 +09:00
|
|
|
{{ end }}
|
2023-02-12 10:33:25 -08:00
|
|
|
|
2023-09-26 09:37:04 -07:00
|
|
|
{{ if .Params.posts | default true }}
|
|
|
|
{{ if $hasContent }}
|
|
|
|
<h2>Posts</h2>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{- range .Pages -}}
|
|
|
|
{{ .Render "li_grid_with_date" }}
|
|
|
|
{{- end -}}
|
2023-04-23 22:07:27 +09:00
|
|
|
{{ end }}
|
2022-10-10 13:02:23 -07:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "footer" }}
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
{{ end }}
|