diff options
author | Alan Pearce | 2014-08-08 10:13:48 +0100 |
---|---|---|
committer | Alan Pearce | 2014-08-08 10:13:48 +0100 |
commit | 8760b88691e626319bdc9af1d5f50803d1ff873c (patch) | |
tree | 2f0b0ce9ae465252d40f9067819604880fe9253b /layouts/index.html | |
parent | eee025c9e54197406d3e8b2753473f2d5c7a609a (diff) | |
download | hyde-8760b88691e626319bdc9af1d5f50803d1ff873c.tar.lz hyde-8760b88691e626319bdc9af1d5f50803d1ff873c.tar.zst hyde-8760b88691e626319bdc9af1d5f50803d1ff873c.zip |
Use Site.Taxonomies instead of Site.Indexes
The latter is deprecated
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/index.html b/layouts/index.html index 88cc1ae..854bab2 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -4,7 +4,7 @@ <section class="categories"> <h2>Categories</h2> <ul> - {{ range $key, $value := .Site.Indexes.categories }} + {{ range $key, $value := .Site.Taxonomies.categories }} <li> <a href="/categories/{{ $key | urlize }}/">{{ $key | title }}</a> </li> |