{{ define "header" }}

{{ .Title }}

{{ with .Params.subtitle }}

{{ . }}

{{ end }} {{ with .Params.tags }}
{{ range . }} #{{ . }} {{ end }}
{{ end }} {{ i18n "by" }} {{ if .Params.author }} {{ .Params.author }} {{ else }} {{ .Site.Title }} {{ end }} {{ i18n "on" }} {{ .Date.Format (i18n "date_fmt") }} {{ if .Site.Params.page_view_conter }} {{ partial "page_view_counter.html" . }} {{ end }} {{ if (and (not .Lastmod.IsZero) (not (eq (dateFormat "2006-01-02" .Lastmod) (dateFormat "2006-01-02" .Date)))) }}
Last Modified on {{ dateFormat "Monday, January 2, 2006" .Params.LastMod }} {{ end }}
{{ end }} {{ define "main" }}
{{ if not (eq (.Param "showtoc") false) }}

{{ i18n "toc" }}

{{.TableOfContents}} {{ end }} {{ .Content }}
{{ if .PrevInSection }} ← {{ i18n "prev_article" }} {{ end }} {{ if .NextInSection }} {{ i18n "next_article" }} → {{ end }}
{{ partial "comments.html" . }} {{ partial "under_content.html" . }}
{{ end }}