You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
602 B

{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" rel="stylesheet" href="{% static 'common/css/style.css' %}">
{% block headextra %}{% endblock %}
</head>
<body>
<div id="wrapper">
<header>
{% include 'common/header.html' %}
{% include 'common/nav.html' %}
</header>
{% block body %}
{% endblock %}
</div>
</body>
</html>