18 lines
277 B
HTML
18 lines
277 B
HTML
|
<h3>Sections</h3>
|
||
|
|
||
|
{{ range .Sections.ByWeight }}
|
||
|
<li>
|
||
|
<a href="{{ .RelPermalink }}">
|
||
|
{{ with .Title }}
|
||
|
{{- . -}}
|
||
|
{{ else }}
|
||
|
{{- .Section -}}
|
||
|
{{ end }}
|
||
|
</a>
|
||
|
{{ with .Description }}
|
||
|
-- {{.}}
|
||
|
{{ end }}
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
|