{% extends "index.html" %} {% block title %}{{ config.title }} — {{ page.title }}{% endblock title %} {% block content %}

{{ page.title | upper }}


{% for asset in page.assets %} {% if asset is matching("[img.](jpg|png)$") %} Náhled {% break %} {% endif %} {% endfor %} {% if page.extra.image %}Náhled{% endif %}
{% 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 %}
{{ page.content | safe }}
{% 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 %}
{% endblock content %}