kollektivforeningen.dk/themes/black-and-light/layouts/_default/single.html

17 lines
385 B
HTML
Raw Normal View History

2020-04-04 16:55:55 +00:00
{{- define "main" -}}
<h1>{{ if .Params.heading }} {{ .Params.heading }} {{ else }} {{ .Title }} {{ end }}</h1>
<section>
2018-12-02 11:50:15 +00:00
{{ 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>
2020-04-04 16:55:55 +00:00
{{- end -}}