Rename tag/category archive variables to avoid possible conflicts with site.tags and site.categories

- Fixes #329
This commit is contained in:
Michael Rose
2016-05-29 21:12:24 -04:00
parent 21d15c9cf9
commit 45f3a7a8ee
4 changed files with 10 additions and 10 deletions

View File

@@ -1,9 +1,9 @@
{% include base_path %}
{% if site.tags.type and page.tags[0] %}
{% if site.tag_archive.type and page.tags[0] %}
{% include tag-list.html %}
{% endif %}
{% if site.categories.type and page.categories[0] %}
{% if site.category_archive.type and page.categories[0] %}
{% include category-list.html %}
{% endif %}