forked from em/receptty.org
Používání maker v šablonách
This commit is contained in:
parent
dbb6fb0b80
commit
3878770f1d
@ -20,11 +20,7 @@
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subnav">
|
||||
<ul>
|
||||
{% for item in config.extra.menu %}
|
||||
<li><a href="{{ item.path }}">{{ item.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{{ macro::subnav() }}
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
@ -37,11 +33,9 @@
|
||||
{{ macro::print_recipe(recipe=page) }}
|
||||
{% endfor %}
|
||||
</section>
|
||||
|
||||
|
||||
<div class="pagination">
|
||||
{% if paginator.previous %}<a href="{{ paginator.previous }}">« Předchozí stránka</a> |{% endif %}
|
||||
<span>{{ paginator.current_index }} / {{ paginator.number_pagers }}</span>
|
||||
{% if paginator.next %}| <a href="{{ paginator.next }}">Další stránka »</a>{% endif %}
|
||||
{{ macro::pagination() }}
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
@ -4,12 +4,6 @@
|
||||
<main>
|
||||
<h2>Kategorie</h2>
|
||||
<hr>
|
||||
{% if terms %}
|
||||
<ul>
|
||||
{% for term in terms %}
|
||||
<li><a href="{{ term.permalink }}">{{ term.name | capitalize() }}</a> ({{ term.pages | length }})</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{{ macro::list_terms() }}
|
||||
</main>
|
||||
{% endblock content %}
|
||||
|
@ -18,3 +18,65 @@
|
||||
{% if recipe.date %}<span class="date">{{ recipe.date | date(format="%d.%m.%Y") }}</span>{% endif %}
|
||||
</article>
|
||||
{% endmacro print_recipe %}
|
||||
|
||||
{% macro pagination() %}
|
||||
{% if paginator.previous %}<a href="{{ paginator.previous }}">« Předchozí stránka</a> |{% endif %}
|
||||
<span>{{ paginator.current_index }} / {{ paginator.number_pagers }}</span>
|
||||
{% if paginator.next %}| <a href="{{ paginator.next }}">Další stránka »</a>{% endif %}
|
||||
{% endmacro pagination %}
|
||||
|
||||
{% macro subnav() %}
|
||||
<ul>
|
||||
{% for item in config.extra.menu %}
|
||||
<li><a href="{{ item.path }}">{{ item.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endmacro subnav %}
|
||||
|
||||
{% macro recipe_image() %}
|
||||
{% for asset in page.assets %}
|
||||
{% if asset is matching("[img.](jpg|png)$") %}
|
||||
<a href="/{{ asset }}"><img src="{{ resize_image(path=asset, width=900, height=400, op="fill") }}" alt="Náhled"></a>
|
||||
{% break %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endmacro recipe_image %}
|
||||
|
||||
{% macro recipe_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 %}
|
||||
<a href="{{ config.extra.git }}/_edit/master/content/{{ page.relative_path }}" class="edit" title="Upravit"><span class="icon-pencil"></span></a>
|
||||
{% endmacro recipe_meta %}
|
||||
|
||||
{% macro recipe_taxonomies() %}
|
||||
{% if page.taxonomies.kategorie %}
|
||||
{% set categories = page.taxonomies.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 %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if page.taxonomies.tagy %}
|
||||
{% set tags = page.taxonomies.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 %}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endmacro recipe_taxonomies %}
|
||||
|
||||
{% macro list_terms() %}
|
||||
{% if terms %}
|
||||
<ul>
|
||||
{% for term in terms %}
|
||||
<li><a href="{{ term.permalink }}">{{ term.name | capitalize() }}</a> ({{ term.pages | length }})</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endmacro list_terms %}
|
||||
|
@ -7,44 +7,17 @@
|
||||
|
||||
<h2>{{ page.title | upper }}</h2>
|
||||
<hr>
|
||||
{% for asset in page.assets %}
|
||||
{% if asset is matching("[img.](jpg|png)$") %}
|
||||
<a href="/{{ asset }}"><img src="{{ resize_image(path=asset, width=900, height=400, op="fill") }}" alt="Náhled"></a>
|
||||
{% break %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{{ macro::recipe_image() }}
|
||||
|
||||
{% 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 %}
|
||||
<a href="{{ config.extra.git }}/_edit/master/content/{{ page.relative_path }}" class="edit" title="Upravit"><span class="icon-pencil"></span></a>
|
||||
{{ macro::recipe_meta() }}
|
||||
</div>
|
||||
|
||||
{{ page.content | safe }}
|
||||
|
||||
<hr>
|
||||
|
||||
{% if page.taxonomies.kategorie %}
|
||||
{% set categories = page.taxonomies.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 %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if page.taxonomies.tagy %}
|
||||
{% set tags = page.taxonomies.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 %}
|
||||
</div>
|
||||
{% endif %}
|
||||
{{ macro::recipe_taxonomies() }}
|
||||
|
||||
</main>
|
||||
{% endblock content %}
|
||||
|
@ -4,12 +4,6 @@
|
||||
<main>
|
||||
<h2>Tagy</h2>
|
||||
<hr>
|
||||
{% if terms %}
|
||||
<ul>
|
||||
{% for term in terms %}
|
||||
<li><a href="{{ term.permalink }}">{{ term.name | capitalize() }}</a> ({{ term.pages | length }})</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{{ macro::list_terms() }}
|
||||
</main>
|
||||
{% endblock content %}
|
||||
|
Loading…
Reference in New Issue
Block a user