kpsul/bds/templates/bds/base.html
2020-05-08 18:10:09 +02:00

20 lines
494 B
HTML

{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<title>GestioBDS</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" rel="stylesheet" href="{% static 'bds/css/bds.css' %}" />
{% block extra_head %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>