hugo_idunn/layouts/_default/single.html

15 lines
288 B
HTML

{{ define "main" }}
<article class="post">
<header class="post_header">
<h1 class="post_title">{{ .Title }}</h1>
{{ if .Description }}
<p class="post_subtitle">{{ .Description }}</p>
{{ end }}
</header>
<main class="post_body">
{{ .Content }}
</main>
</article>
{{ end }}