_includes/post-meta.html in alembic-jekyll-theme-2.3.1 vs _includes/post-meta.html in alembic-jekyll-theme-3.0.0
- old
+ new
@@ -1,13 +1,13 @@
{% if page.categories %}
{% capture categories %}
{% for category in page.categories %}
- <span class="label label--category"><a href="{{ site.baseurl }}/categories#{{ category | downcase }}">{{ category }}</a></span>{% if forloop.last == false %},{% endif %}
+ <span class="label label--category"><a href="{{ site.baseurl }}/categories/#{{ category | downcase }}">{{ category }}</a></span>{% if forloop.last == false %},{% endif %}
{% endfor %}
{% endcapture %}
{% elsif page.category %}
{% capture categories %}
- <span class="label label--category"><a href="{{ site.baseurl }}/categories#{{ page.category | downcase }}">{{ page.category }}</a></span>
+ <span class="label label--category"><a href="{{ site.baseurl }}/categories/#{{ page.category | downcase }}">{{ page.category }}</a></span>
{% endcapture %}
{% endif %}
<small class="small post-meta">
{{ categories | append: " · " }}<time datetime="{{ page.date | date_to_xmlschema }}" class="time">{{ page.date | date_to_string }}</time>