blag/layouts/_default/single.html
2020-04-11 22:25:33 -04:00

17 lines
579 B
HTML

{{- define "main" -}}
{{- partial "article-header.html" . -}}
{{- $justify := false -}}
{{- if eq .Params.justify true -}} {{- $justify = true -}} {{- end -}}
<article class="article markdown-body" {{- if $justify -}}style="text-align: justify;" {{- end -}}>
{{ if .Params.toc }}
{{ .TableOfContents }}
{{ end }}
{{- .Content -}}
</article>
{{- partial "article-labels.html" . -}}
{{- partial "article-license.html" . -}}
{{- partial "article-author.html" . -}}
{{- partial "article-bottom-navigation.html" . -}}
{{- partial "article-comments.html" . -}}
{{- end -}}