{{ define "main_article" }}
{{ partial "module/sidebar_btn" . }}

{{ .Title }}

{{ with .Params.categories }}
{{ range . }} {{ . }} {{ end }}
{{ end }} {{ with .Params.tags }}
{{ range . }} {{ . }} {{ end }}
{{ end }} {{ with $.Site.Params.page.showBreadcrumb }}
{{ partial "module/breadcrumb" $ }}
{{ end }} {{ if .IsTranslated }}
{{ partial "module/page_translated" $ }}
{{ end }}
{{ if isset $.Params "includetoc" }} {{ if $.Params.includetoc }} {{ .TableOfContents }} {{ end }} {{ else if $.Site.Params.page.includeToc }} {{ .TableOfContents }} {{ end }}
{{ if .Content }} {{ .Content }} {{ else }}

{{ i18n "empty_page" | strings.FirstUpper }}

{{ end }}
{{ end }}