|
|
|
@ -16,9 +16,10 @@
|
|
|
|
|
|
|
|
|
|
{% if page.extra.image %}<img src="{{ page.extra.image }}" alt="Náhled">{% endif %}
|
|
|
|
|
<div class="meta">
|
|
|
|
|
{% if page.extra.portions %}<span class="tag">Porce: <strong>{{ page.extra.portions }}</strong></span>{% endif %}
|
|
|
|
|
{% if page.extra.time %}<span class="tag">Doba přípravy: <strong>{{ page.extra.time }} min</strong></span>{% endif %}
|
|
|
|
|
{% if page.extra.source %}<span class="tag">Zdroj: <strong>{{ page.extra.source }}</strong></span>{% endif %}
|
|
|
|
|
{% if page.extra.portions %}<span class="tag">Porce: <strong>{{ page.extra.portions }}</strong></span>{% endif %}
|
|
|
|
|
{% if page.extra.time %}<span class="tag">Doba přípravy: <strong>{{ page.extra.time }} min</strong></span>{% endif %}
|
|
|
|
|
{% if page.extra.source %}<span class="tag">Zdroj: <strong>{{ page.extra.source }}</strong></span>{% endif %}
|
|
|
|
|
<a href="{{ config.extra.git }}/_edit/master/content/{{ page.relative_path }}" class="edit" title="Upravit"><span class="icon-pencil"></span></a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{{ page.content | safe }}
|
|
|
|
@ -27,8 +28,8 @@
|
|
|
|
|
|
|
|
|
|
{% if page.taxonomies.kategorie %}
|
|
|
|
|
{% set categories = page.taxonomies.kategorie %}
|
|
|
|
|
<div>
|
|
|
|
|
Kategorie –
|
|
|
|
|
<div class="taglist">
|
|
|
|
|
Kategorie –
|
|
|
|
|
{% for term in categories %}
|
|
|
|
|
<span class="tag"><a href="{{ get_taxonomy_url(kind="kategorie", name=term) | safe }}">{{ term | capitalize() }}</a></span>
|
|
|
|
|
{% endfor %}
|
|
|
|
@ -37,8 +38,8 @@
|
|
|
|
|
|
|
|
|
|
{% if page.taxonomies.tagy %}
|
|
|
|
|
{% set tags = page.taxonomies.tagy %}
|
|
|
|
|
<div>
|
|
|
|
|
Tagy –
|
|
|
|
|
<div class="taglist">
|
|
|
|
|
Tagy –
|
|
|
|
|
{% for term in tags %}
|
|
|
|
|
<span class="tag"><a href="{{ get_taxonomy_url(kind="tagy", name=term) | safe }}">{{ term | capitalize() }}</a></span>
|
|
|
|
|
{% endfor %}
|
|
|
|
|