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

15 lines
261 B
HTML
Raw Normal View History

2020-10-14 01:00:50 +02:00
{{ define "main" }}
<section>
<h1 class="post-title">
{{ .Title | markdownify }}
</h1>
<div class="post-content">
{{- with .Content -}}
<div>
{{ . }}
</div>
{{- end -}}
</div>
</section>
{{ end }}