This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
univcloud/univcloud/templates/univcloud/base.html

36 lines
1.1 KiB
HTML

{% 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 bodyargs %}{% endblock %}>
{% 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">
{% block beforecontent %}
{% endblock %}
{% block content %}
{% endblock %}
</div>
</div>
{% block page-end %}
{% endblock %}
</body>
</html>