hugohm/layouts/nodos/section.html

17 lines
333 B
HTML

{{ define "main" }}
{{ .TableOfContents }}
{{ .Content }}
{{ range where .Pages "Params.type" "nodos" }}
{{ partial "nodo" . }}
{{ end }}
{{ end }}
{{ define "sidebar_menu" }}
<ul>
{{ range .Parent.Pages }}
<li><a href="{{ .Permalink }}">{{.Title}}</a></li>
{{ end }}
</ul>
{{ end}}