36 lines
No EOL
779 B
HTML
36 lines
No EOL
779 B
HTML
{{ define "main" }}
|
|
{{ if .Params.toc }}
|
|
{{ partial "toc.html" . }}
|
|
{{ end }}
|
|
<main>
|
|
<h1>{{ .Title }}</h1>
|
|
<div class="sm-1 mtb-1">
|
|
Posted at — {{ dateFormat .Site.Params.timeformat .Date }}
|
|
{{ if .Draft }}
|
|
<span class="tag ml-1">
|
|
DRAFT
|
|
</span>
|
|
{{ end }}
|
|
</div>
|
|
<p>{{ .Description | markdownify | safeHTML }}</p>
|
|
<article class="md">
|
|
{{ .Content }}
|
|
</article>
|
|
</main>
|
|
{{ if or .Params.math .Site.Params.math }}
|
|
{{ partial "math.html" . }}
|
|
{{ end }}
|
|
|
|
{{ if or .Params.mermaid .Site.Params.mermaid }}
|
|
{{ partial "mermaid.html" . }}
|
|
{{ end }}
|
|
|
|
{{ if and .Params.comment (eq .Site.Params.comment "disqus")}}
|
|
{{ partial "disqus.html" . }}
|
|
{{ end }}
|
|
|
|
{{ if and .Params.comment (eq .Site.Params.comment "ovo")}}
|
|
{{ partial "ovo.html" . }}
|
|
{{ end }}
|
|
|
|
{{ end }} |