poulpe/var/templates/base_html.html

70 lines
2.8 KiB
HTML
Raw Normal View History

{% 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">
<!-- 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 -->
2017-02-18 16:56:56 +01:00
<link href="{% static "css/style.css" %}" rel="stylesheet">
<link href="{% static "css/style-responsive.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>
2017-02-18 16:56:56 +01:00
<section id="container" >
<header class="header black-bg">
<div class="sidebar-toggle-box">
<div class="fa fa-bars tooltips" data-placement="right" data-original-title="Toggle Navigation"></div>
</div>
<!--logo start-->
{% block page_main_title %}{% endblock %}
<!--logo end-->
{% include "base_nav.html" %}
</header>
{% include "base_sidebar_menu.html" %}
<section id="main-content">
<section class="wrapper site-min-height">
{% block real_content %}{% endblock %}
</section><! --/wrapper -->
</section><!-- /MAIN CONTENT -->
{% include "base_footer.html" %}
</section>
<!-- /#container -->
</div>
<!-- jQuery -->
<script src="{% static "jquery/jquery.min.js" %}"></script>
2017-02-18 16:56:56 +01:00
<script src="{% static "jquery/jquery-ui-1.9.2.custom.min.js" %}"></script>
<script src="{% static "jquery/jquery.ui.touch-punch.min.js" %}"></script>
<script class="include" type="text/javascript" src="{% static "jquery/jquery.dcjqaccordion.2.7.js" %}"></script>
<script src="{% static "jquery/jquery.scrollTo.min.js" %}"></script>
<script src="{% static "jquery/jquery.nicescroll.js" %}"></script>
<!-- Bootstrap Core JavaScript -->
<script src=" {% static "js/bootstrap.min.js" %}"></script>
<!-- Custom Theme JavaScript -->
<script src="{% static "js/index.js" %}"></script>
2017-02-18 16:56:56 +01:00
{% block extra_script %}{% endblock %}
</body>
</html>