17 lines
579 B
HTML
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 -}}
|