16 lines
No EOL
419 B
HTML
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> |