{% macro print_recipe(recipe) %}
{% set_global image_found = 0 %} {% for asset in recipe.assets %} {% if asset is matching("[img.](jpg|png)$") %} Náhled {% set_global image_found = 1 %} {% break %} {% endif %} {% endfor %} {% if image_found == 0 %} Náhradní obrázek {% endif %} {% set_global image_found = 0 %} {% if recipe.title %}

{{ recipe.title }}

{% endif %} {% if recipe.date %}{{ recipe.date | date(format="%d.%m.%Y") }}{% endif %}
{% endmacro print_recipe %} {% macro pagination() %} {% if paginator.previous %}« Předchozí stránka |{% endif %} {{ paginator.current_index }} / {{ paginator.number_pagers }} {% if paginator.next %}| Další stránka »{% endif %} {% endmacro pagination %} {% macro subnav() %} {% endmacro subnav %} {% macro recipe_image() %} {% for asset in page.assets %} {% if asset is matching("[img.](jpg|png)$") %} Náhled {% break %} {% endif %} {% endfor %} {% endmacro recipe_image %} {% macro recipe_meta() %} {% if page.extra.portions %}Porce: {{ page.extra.portions }}{% endif %} {% if page.extra.time %}Doba přípravy: {{ page.extra.time }} min{% endif %} {% if page.extra.source %}Zdroj: {{ page.extra.source }}{% endif %} {% endmacro recipe_meta %} {% macro recipe_taxonomies() %} {% if page.taxonomies.kategorie %} {% set categories = page.taxonomies.kategorie %}
Kategorie –  {% for term in categories %} {{ term | capitalize() }} {% endfor %}
{% endif %} {% if page.taxonomies.tagy %} {% set tags = page.taxonomies.tagy %}
Tagy –  {% for term in tags %} {{ term | capitalize() }} {% endfor %}
{% endif %} {% endmacro recipe_taxonomies %} {% macro list_terms() %} {% if terms %} {% endif %} {% endmacro list_terms %}