{{ 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 */}}
{{- .Content -}} {{- partial "tags.html" . -}}
{{ template "_internal/disqus.html" . }}
{{ end }}