15 lines
		
	
	
		
			327 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			327 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html>
 | 
						|
	<head>
 | 
						|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/holiday.css@0.11.2" />
 | 
						|
		<title>App</title>
 | 
						|
	</head>
 | 
						|
	<body>
 | 
						|
		<div class="container">
 | 
						|
			{% include "includes/header.html" %}
 | 
						|
			{% block content %}{% endblock content %}
 | 
						|
			{% include "includes/footer.html" %}
 | 
						|
		</div>
 | 
						|
	</body>
 | 
						|
</html>
 |