experiENS/monstage/templates/skeleton.html
2015-06-17 00:54:14 +02:00

16 lines
No EOL
419 B
HTML

{% load staticfiles %}
<!doctype html>
<html>
<head>
<title>{% block title %}ExperiENS{% endblock %}</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>
<div id="content">
{% block content %}{% endblock %}
</div>
</body>
</html>