blob: b34d8b4a70d61a6e699295f9feafd20bcd3c32e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{{ define "main" }}
<content>
{{ range $course, $taxonomy := site.Taxonomies.course }}
<h2>{{ $course | title }}</h2>
<ul class="blog-posts">
{{ range $taxonomy.Pages }} {{ if eq .Type "notes" }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }} {{ end }}
</ul>
{{ end }}
</content>
{{ end }}
|