experiENS/monstage/templates/skeleton.html

14 lines
No EOL
352 B
HTML

{% load staticfiles %}
<!doctype html>
<html>
<head>
<title>ExperiENS</title>
<link type="text/css" rel="stylesheet" href="{% static 'style.css' %}" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
{% block extra_head %}{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>