experiENS/monstage/templates/skeleton.html

27 lines
784 B
HTML
Raw Normal View History

{% load staticfiles %}
<!doctype html>
<html>
<head>
2015-06-17 00:54:14 +02:00
<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>
2015-06-20 00:02:36 +02:00
<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>
2015-06-17 00:54:14 +02:00
<div id="content">
{% block content %}{% endblock %}
</div>
</body>
</html>