poulpe/var/templates/base_html.html

76 lines
2.9 KiB
HTML

{% load staticfiles %}
<!DOCTYPE html>
<html lang="fr">
<head>
<title>
{% block title %}{% endblock %}
</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Nunito:700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Catamaran:700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Teko:500" rel="stylesheet">
<!-- Bootstrap & Cie -->
<script src="{% static "jquery/jquery-3.1.0.min.js" %}" type="text/javascript"></script>
<link href="{% static "font-awesome/css/font-awesome.min.css" %}" rel="stylesheet">
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
<link href="{% static "fonts/glyphicons-halflings-regular.ttf" %}" rel="stylesheet">
<!-- Sources personalisées -->
<!-- <link href="{% static "css/index.css" %}" rel="stylesheet"> -->
<link href="{% static "css/index.css" %}" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
{% block extra_head %}{% endblock %}
</head>
<body>
<div id="wrapper">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">{% block page_main_title %}{% endblock %}</a>
</div>
<!-- /.navbar-header -->
{% include "base_top_nav.html" %}
{% include "base_side_nav.html" %}
</nav>
<div id="page-wrapper">
{% block real_content %}{% endblock %}
</div>
<!-- /#page-wrapper -->
</div>
{% block extra_script %}{% endblock %}
<!-- jQuery -->
<script src="{% static "jquery/jquery.min.js" %}"></script>
<!-- Bootstrap Core JavaScript -->
<script src=" {% static "js/bootstrap.min.js" %}"></script>
<!-- Metis Menu Plugin JavaScript -->
<script src="{% static "js/metisMenu.js" %}"></script>
<!-- Custom Theme JavaScript -->
<script src="{% static "js/index.js" %}"></script>
</body>
</html>