17 lines
515 B
HTML
17 lines
515 B
HTML
|
{{ define "main" -}}
|
|||
|
<main class="main layout__main">
|
|||
|
<article class="{{ with .Section }}section-{{ . | urlize }} {{ end }}single-view">
|
|||
|
<header>
|
|||
|
<h1 class="hidden">{{ .Title }}</h1>
|
|||
|
<p>
|
|||
|
{{ with $.Param "author" }}<span class="author">{{ . }}</span> – {{ end -}}
|
|||
|
<time class="created-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format ($.Param "dateformat" | default "2 January, 2006") }}</time>
|
|||
|
</p>
|
|||
|
</header>
|
|||
|
<div class="content">
|
|||
|
{{ .Content }}
|
|||
|
</div>
|
|||
|
</article>
|
|||
|
</main>
|
|||
|
{{ end }}
|