even icon indicating copy to clipboard operation
even copied to clipboard

singular vs. plural taxonomies

Open ddierkes opened this issue 6 years ago • 1 comments

I am puzzled by what 'page.category' would be in the post_macros template. This is the code in the repo.

{% if page.category %}
  <div class="post__category">
    <a href="{{ get_taxonomy_url(kind="category", name=page.category) }}">{{ page.category }}</a>
  </div>
{% endif %}

But I suspect that this is supposed to be displaying the categories taxonomy outlined elsewhere in the theme and should in fact be more like this, no?

{% if page.taxonomies.categories %}
   <div class="post__category">
      {% for category in page.taxonomies.categories %}
         <a href="{{ get_taxonomy_url(kind="categories", name=category) }}">{{ category }}</a>
       {% endfor %}
  </div>
{% endif %}

ddierkes avatar Jul 20 '19 20:07 ddierkes

Looks like I forgot to update that bit when I changed the categories in Zola

Keats avatar Jul 20 '19 21:07 Keats