bop-hugo-theme/layouts/_default/single.html

15 lines
255 B
HTML

{{ define "main" }}
<main>
<h1 class="post-title">
{{ .Title | markdownify }}
</h1>
<div class="post-content">
{{- with .Content -}}
<div>
{{ . }}
</div>
{{- end -}}
</div>
</main>
{{ end }}