Hugo Template Setup
Minimal required changes
Section titled “Minimal required changes”1. feature_image in single post template
Section titled “1. feature_image in single post template”{{/* layouts/_default/single.html */}}{{ with .Params.feature_image }} <img src="{{ . }}" alt="{{ $.Title }}" class="post-hero">{{ end }}2. Navigation partial
Section titled “2. Navigation partial”{{/* layouts/partials/nav.html */}}<nav> {{ range .Site.Menus.main }} <a href="{{ .URL }}" {{ if .HasChildren }}class="has-children"{{ end }}> {{ .Name }} </a> {{ if .HasChildren }} <ul class="submenu"> {{ range .Children }} <li><a href="{{ .URL }}">{{ .Name }}</a></li> {{ end }} </ul> {{ end }} {{ end }}</nav>3. Draft filtering in list templates
Section titled “3. Draft filtering in list templates”{{/* layouts/_default/list.html */}}{{ range where .Pages "Params.draft" "ne" true }} {{/* render post */}}{{ end }}