hugo-theme-minima/layouts/_default/single.html
2021-07-18 18:54:56 +08:00

24 lines
459 B
HTML

{{ define "main" }}
<main>
<h1>{{ .Title }}</h1>
<div class="sm-1 mtb-1">
Posted at &mdash; {{ dateFormat "Jan 2, 2006" .Date }}
{{ if .Draft }}
<span class="tag ml-1">
DRAFT
</span>
{{ end }}
</div>
<p>{{ .Description }}</p>
<article class="md">
{{ .Content }}
</article>
</main>
{{ if or .Params.math .Site.Params.math }}
{{ partial "math.html" . }}
{{ end }}
{{ if .Params.comment }}
{{ partial "disqus.html" . }}
{{ end }}
{{ end }}