base.html template (needed by authentic2)

This commit is contained in:
Thomas Noel 2013-07-18 09:58:45 +00:00
parent 9cc35e1af4
commit a38b13cf1f
1 changed files with 1 additions and 42 deletions

View File

@ -1,42 +0,0 @@
{% load url from future %}
{% load i18n %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>{% block page-title %}Univcloud{% endblock %}</title>
<script src="{{ STATIC_URL }}js/jquery.js"></script>
{% block extrascripts %}
{% endblock %}
<link href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<link href='http://fonts.googleapis.com/css?family=Merriweather+Sans:400,300,700' rel='stylesheet' type='text/css'/>
<link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/style.css"/>
</head>
<body>
{% block wrapper %}
<div id="wrap">
{% endblock %}
{% if not popup %}
<div id="header">
<h1>Portail des services Univcloud</h1>
<a href="#" id="portal">Afficher le portail</a>
</div>
{% endif %}
<div id="content">
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% block beforecontent %}
{% endblock %}
{% block content %}
{% endblock %}
</div>
</div>
{% block page-end %}
{% endblock %}
</body>
</html>

View File

@ -0,0 +1 @@
univcloud/base.html