Oprava buildu, když recept nemá tagy
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Emil Miler 2023-11-08 10:08:51 +01:00
parent 7de07f9889
commit 2138316523
1 changed files with 5 additions and 3 deletions

View File

@ -54,9 +54,11 @@
{% macro tags_in_category() %}
{% set_global tags = [] %}
{% for page in term.pages %}
{% for tag in page.taxonomies.tagy %}
{% set_global tags = tags | concat(with=tag) %}
{% endfor %}
{% if page.taxonomies.tagy %}
{% for tag in page.taxonomies.tagy %}
{% set_global tags = tags | concat(with=tag) %}
{% endfor %}
{% endif %}
{% endfor %}
{% set_global tags = tags | sort | unique %}