32 lines
		
	
	
		
			639 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			639 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="cs">
 | 
						|
<head>
 | 
						|
	<meta charset="UTF-8">
 | 
						|
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
	<title>{% block title %}{{ config.title }}{% endblock %}</title>
 | 
						|
	<link rel="stylesheet" type="text/css" href="style.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
	<nav>
 | 
						|
		<div class="wrap">
 | 
						|
			<a href="{{ config.base_url }}"><img src="img/logo.svg" class="logo"></a>
 | 
						|
			<ul>
 | 
						|
				<li><a href="#">Home</a></li>
 | 
						|
				<li><a href="#">About</a></li>
 | 
						|
				<li><a href="#">Contact</a></li>
 | 
						|
			</ul>
 | 
						|
		</div>
 | 
						|
	</nav>
 | 
						|
 | 
						|
	{% block content %}
 | 
						|
	{% endblock %}
 | 
						|
 | 
						|
	<footer>
 | 
						|
		<p>© 2024 {{ config.title }}</p>
 | 
						|
	</footer>
 | 
						|
 | 
						|
</body>
 | 
						|
</html>
 | 
						|
 |