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.

20 lines
525 B

{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{% static 'core/css/style.css' %}" rel="stylesheet">
{% if user.is_authenticated %}
<link href="{% static 'core/css/logged-in.css' %}" rel="stylesheet">
{% endif %}
</head>
<body>
<div id="wrapper">
{% include 'common/navbar.html' %}
{% block body %}
{% endblock %}
</div>
</body>
</html>