26 lines
		
	
	
	
		
			664 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			664 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load static %}
 | |
| <!DOCTYPE html>
 | |
| <html lang="cs">
 | |
| <head>
 | |
|   <title>{% block nadpis %}{% endblock %}</title>
 | |
|   <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
| 
 | |
|   <link href="{% static 'images/icon.png' %}" rel="shortcut icon" type="image/x-icon">
 | |
|   <link href="{% static 'css/base.css' %}?version=1" rel="stylesheet">
 | |
| 
 | |
|   {# (Autoreload:) <meta http-equiv="refresh" content="30"> = Refresh every 30 second #}
 | |
|   {% block prenacitani %}{% endblock %}
 | |
| 
 | |
|   {# script specifický pro stránku #}
 | |
|   {% block script %}{% endblock %}
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|   <div class='content'>
 | |
|     {% block content %}
 | |
|     {% endblock content %}
 | |
|   </div>
 | |
| </body>
 | |
| 
 | |
| 
 | |
| </html>
 |