17 lines
385 B
HTML
17 lines
385 B
HTML
{{- define "main" -}}
|
|
<h1>{{ if .Params.heading }} {{ .Params.heading }} {{ else }} {{ .Title }} {{ end }}</h1>
|
|
<section>
|
|
{{ if .Params.date }}
|
|
<div id=sub-header>
|
|
{{ .Date.Format (.Site.Params.dateform | default "January 2006") }} · {{ .ReadingTime }} minute read
|
|
</div>
|
|
{{ end }}
|
|
|
|
<div class="entry-content">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{{- end -}}
|