forked from em/receptty.org
Oprava buildu, když recept nemá tagy
This commit is contained in:
parent
7de07f9889
commit
2138316523
@ -54,9 +54,11 @@
|
|||||||
{% macro tags_in_category() %}
|
{% macro tags_in_category() %}
|
||||||
{% set_global tags = [] %}
|
{% set_global tags = [] %}
|
||||||
{% for page in term.pages %}
|
{% for page in term.pages %}
|
||||||
{% for tag in page.taxonomies.tagy %}
|
{% if page.taxonomies.tagy %}
|
||||||
{% set_global tags = tags | concat(with=tag) %}
|
{% for tag in page.taxonomies.tagy %}
|
||||||
{% endfor %}
|
{% set_global tags = tags | concat(with=tag) %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% set_global tags = tags | sort | unique %}
|
{% set_global tags = tags | sort | unique %}
|
||||||
|
Loading…
Reference in New Issue
Block a user