11 lines
280 B
HTML
11 lines
280 B
HTML
{{ define "singlebody" }}
|
|
{{ $s := partialCached "scratch.html" . }}
|
|
{{ range $p := .Site.Pages }}
|
|
{{ $scratch := $s.Get (printf "/%s" .File) }}
|
|
<div>{{ . }}: {{ .Title }}</div>
|
|
{{ with ($scratch.depth) }}
|
|
<div>Depth: {{ . }}
|
|
{{ end }}
|
|
<hr />
|
|
{{ end }}
|
|
{{ end }}
|