Byrokracie/byrokracie/templates/base.html

27 lines
664 B
HTML
Raw Normal View History

2023-10-16 07:38:57 +02:00
{% 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>