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/partials/sidebar.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/partials/sidebar.html')
-rw-r--r-- | layouts/partials/sidebar.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index ec883ad..01babc6 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -13,7 +13,7 @@ <nav> <ul class="sidebar-nav"> <li><a href="/" itemprop="url">Home</a> </li> - {{ range $key, $value := .Site.Indexes.categories }} + {{ range $key, $value := .Site.Taxonomies.categories }} <li> <a href="/categories/{{ $key | urlize }}/">{{ $key | title }}</a> </li> |