{{ define "header" }} {{/* We can override any block in the baseof file be defining it in the template */}} {{ partial "page-header.html" . }} {{ end }} {{ define "main" }}

{{/* CurrentSection allows us to use the section title instead of inferring from the folder. https://gohugo.io/variables/page/#section-variables-and-methods */}} {{with .CurrentSection.Title }}{{. | upper }}{{end}}

{{- .Title -}}

{{/* Hugo uses Go's date formatting is set by example. Here are two formats */}} - {{ .ReadingTime}} minutes read - {{ .WordCount}} words
{{- .Content -}} {{- partial "tags.html" . -}}
{{ with .PrevInSection }} << {{ .Title }} {{ end }} {{ with .NextInSection }} {{ .Title }} >> {{ end }}
{{ template "_internal/disqus.html" . }}
{{ end }}