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

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