forked from em/receptty.org
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			999 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			999 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% import "macros.html" as macro %}
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
	<meta charset="UTF-8">
 | 
						|
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
	<title>{% block title %}{{ config.title }}{% endblock title %}</title>
 | 
						|
	<link rel="stylesheet" href="{{ get_url(path="/style.css") }}" type="text/css">
 | 
						|
	<link rel="stylesheet" href="{{ get_url(path="/icons.css") }}" type="text/css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
	<nav>
 | 
						|
		<div class="mainnav">
 | 
						|
			<h1><a href="{{ config.base_url }}">Recepty na cesty</a></h1>
 | 
						|
			<ul>
 | 
						|
				<li><a href="{{ get_url(path="@/vyhledavani.md") }}" title="Vyhledávání"><span class="icon-search"></span></a></li>
 | 
						|
				<!-- <li><a href="/info/"><span class="icon-info"></span></a></li> -->
 | 
						|
				<li><a href="{{ config.extra.git }}" title="Git"><span class="icon-git"></span></a></li>
 | 
						|
			</ul>
 | 
						|
		</div>
 | 
						|
		<div class="subnav">
 | 
						|
			{{ macro::subnav() }}
 | 
						|
		</div>
 | 
						|
	</nav>
 | 
						|
	{% block content %}{% endblock content %}
 | 
						|
	{% block script %}{% endblock script %}
 | 
						|
</body>
 | 
						|
</html>
 |