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.
univnautes-old/virtualenv/pffedportal/templates/base0.html

86 lines
2.9 KiB
HTML

{% load i18n %}{% load staticfiles %}<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>eduspot :: {% block title %}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="eduspot / Portail captif UnivNautes">
<meta name="author" content="UNPIdF - Entr'ouvert www.entrouvert.com">
<!-- Le styles -->
<link href="{% static "bootstrap/css/bootstrap.css" %}" rel="stylesheet">
<style type="text/css">
body { padding-top: 60px; padding-bottom: 40px; }
.sidebar-nav { padding: 9px 0; }
</style>
<link href="{% static "bootstrap/css/bootstrap-responsive.css" %}" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="{% static "html5shiv/js/html5shiv.js" %}"></script>
<![endif]-->
{% block head %}{% endblock %}
<!-- Fav and touch icons -->
<link rel="shortcut icon" href="{% static "univnautes/ico/favicon.png" %}" />
<!-- local CSS -->
<link rel="stylesheet" href="{% static "univnautes/css/univnautes.css" %}" />
<!--[if lte IE 8]><link rel="stylesheet" href="{% static "univnautes/css/univnautes.ie.css" %}" /><![endif]-->
</head>
<body {% block body_args %}{% endblock %}>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/"><i class="icon-eduspot"></i> Accès eduspot</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="/conditions">Conditions d'utilisation</a></li>
{% if mailform %}<li><a href="/mail">Contact <i class="icon-envelope icon-white"></i></a></li>{% endif %}
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
{% block header %}{% endblock %}
</div>
<div class="row-fluid">
{% block disclaimer %}{% endblock %}
</div>
{% block content %}{% endblock %}
<hr>
<footer>
<p>&copy; UNPIdF 2013 — <a href="licences">licences</a></p>
{% block footer %}{% endblock %}
</footer>
</div><!--/.fluid-container-->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="{% static "jquery/js/jquery-1.10.2.min.js" %}"></script>
<script src="{% static "bootstrap/js/bootstrap.min.js" %}"></script>
{% block end %}{% endblock %}
</body>
</html>