49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "index.html" %}
 | 
						|
 | 
						|
{% block title %}{{ config.title }} — {{ page.title }}{% endblock title %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<main class="recipe">
 | 
						|
	
 | 
						|
	<h2>{{ page.title | upper }}</h2>
 | 
						|
	<hr>
 | 
						|
	{% for asset in page.assets %}
 | 
						|
		{% if asset is matching("[img.](jpg|png)$") %}
 | 
						|
			<img src="{{ resize_image(path=asset, width=900, height=400, op="fill") }}" alt="Náhled">
 | 
						|
			{% break %}
 | 
						|
		{% endif %}
 | 
						|
	{% endfor %}
 | 
						|
	
 | 
						|
	{% if page.extra.image %}<img src="{{ page.extra.image }}" alt="Náhled">{% endif %}
 | 
						|
	<div class="meta">
 | 
						|
		{% if page.extra.portions %}<span class="tag">Porce: {{ page.extra.portions }}</span>{% endif %}
 | 
						|
		{% if page.extra.time %}<span class="tag">Doba přípravy: {{ page.extra.time }} min</span>{% endif %}
 | 
						|
	</div>
 | 
						|
	
 | 
						|
	{{ page.content | safe }}
 | 
						|
	
 | 
						|
	<hr>
 | 
						|
 | 
						|
	{% if page.taxonomies.kategorie %}
 | 
						|
	{% set categories = page.taxonomies.kategorie %}
 | 
						|
	<div>
 | 
						|
		Kategorie – 
 | 
						|
		{% for term in categories %}
 | 
						|
			<span class="tag"><a href="">{{ term | capitalize() }}</a></span>
 | 
						|
		{% endfor %}
 | 
						|
	</div>
 | 
						|
	{% endif %}
 | 
						|
 | 
						|
	{% if page.taxonomies.tagy %}
 | 
						|
	{% set tags = page.taxonomies.tagy %}
 | 
						|
	<div>
 | 
						|
		Tagy – 
 | 
						|
		{% for term in tags %}
 | 
						|
			<span class="tag"><a href="">{{ term | capitalize() }}</a></span>
 | 
						|
		{% endfor %}
 | 
						|
	</div>
 | 
						|
	{% endif %}
 | 
						|
 | 
						|
</main>
 | 
						|
{% endblock content %}
 |