Sort taxonomy, term subpages by link title
This commit is contained in:
@@ -2,5 +2,5 @@
|
||||
{{ $page := . }}
|
||||
|
||||
{{ partial "paige/page.html" $page }}
|
||||
{{ partial "paige/list.html" $page }}
|
||||
{{ partial "paige/list.html" (dict "page" $page) }}
|
||||
{{ end }}
|
||||
|
6
layouts/_default/taxonomy.html
Normal file
6
layouts/_default/taxonomy.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{{ define "main" }}
|
||||
{{ $page := . }}
|
||||
|
||||
{{ partial "paige/page.html" $page }}
|
||||
{{ partial "paige/list.html" (dict "page" $page "sort" true) }}
|
||||
{{ end }}
|
6
layouts/_default/term.html
Normal file
6
layouts/_default/term.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{{ define "main" }}
|
||||
{{ $page := . }}
|
||||
|
||||
{{ partial "paige/page.html" $page }}
|
||||
{{ partial "paige/list.html" (dict "page" $page "sort" true) }}
|
||||
{{ end }}
|
Reference in New Issue
Block a user