list.html 364 B

1234567891011121314151617
  1. {{ define "main"}}
  2. {{ if not (.Params.disable_h1) }}
  3. <h1>{{.Title}}</h1>
  4. {{ end }}
  5. {{ .Content }}
  6. {{ if not (.Params.disable_list) }}
  7. {{ range .Pages.ByWeight }}
  8. <li>
  9. <a href="{{.Permalink}}">{{.Title}}</a>
  10. </li>
  11. {{ end }}{{/* {{ range .Pages.ByWeight }} */}}
  12. {{ end }}{{/* {{ if not (.Params.disable_list) }} */}}
  13. {{ end }}{{/* {{ define "main"}} */}}