experiENS/monstage/templates/skeleton.html
2015-06-20 00:02:36 +02:00

27 lines
No EOL
784 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>
<header>
<h1>ExperiENS<span class='beta'>beta</span></h1>
<nav>
<ul id="menu">
<li><a href="{% url 'monstage:index' %}">Accueil</a></li>
<li><a href="{% url 'monstage:home' %}">Mon expérience</a></li>
<li><a href="{% url 'monstage:search' %}">Recherche</a></li>
</ul>
</nav>
</header>
<div id="content">
{% block content %}{% endblock %}
</div>
</body>
</html>