Add page taxonomy links for tags and categories

- Customizable text via _data file
- Enable/disable links by setting archive page filenames in _config.yml
This commit is contained in:
Michael Rose
2016-03-10 21:53:28 -05:00
parent f63b8fe294
commit 4427cf4c8e
10 changed files with 56 additions and 29 deletions

View File

@ -10,7 +10,7 @@ author_profile: false
{% for tag in group_names %}
{% assign posts = group_items[forloop.index0] %}
<h2 class="archive__subtitle">{{ tag }}</h2>
<h2 id="{{ tag | slugify }}" class="archive__subtitle">{{ tag }}</h2>
{% for post in posts %}
{% include archive-list-single.html %}
{% endfor %}