{{ .Title }}
	{{ with .Params.description }}{{ . | markdownify }}
{{ end }}
	
		{{ with .Params.author }}{{ T "post_byline_by" }} {{ . | markdownify }} |{{ end}}
		
	
	
		{{ $context := . }}
		{{ if .Site.Params.Taxonomy.taxonomyPageHeader }}
			{{ range $index, $taxo := .Site.Params.Taxonomy.taxonomyPageHeader }}
				{{ partial "taxonomy_terms_article.html" (dict "context" $context "taxo" $taxo ) }}
			{{ end }}
		{{ else }}
			{{ range $taxo, $taxo_map := .Site.Taxonomies }}
				{{ partial "taxonomy_terms_article.html" (dict "context" $context "taxo" $taxo ) }}
			{{ end }}
		{{ end }}
		{{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }}
			{{ partial "reading-time.html" . }}
		{{ end }}
	
	{{ .Content }}
	{{ if (.Site.Params.DisqusShortname) }}
		
		{{ partial "disqus-comment.html" . }}
		
	{{ end }}
	{{ partial "pager.html" . }}