6be19a463c
now var components are in shared installing widget_tweaks
74 lines
2.8 KiB
HTML
74 lines
2.8 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">
|
|
|
|
<!-- Bootstrap & Cie -->
|
|
<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/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>
|
|
<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>
|
|
<aside>
|
|
<div id="sidebar" class="nav-collapse ">
|
|
<!-- sidebar menu start-->
|
|
<ul class="sidebar-menu" id="nav-accordion">
|
|
{% block sidebar_menu %}{% endblock %}
|
|
</ul>
|
|
<!-- sidebar menu end-->
|
|
</div>
|
|
</aside>
|
|
<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-3.1.0.min.js" %}" type="text/javascript"></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>
|
|
|
|
{% block extra_script %}{% endblock %}
|
|
</body>
|
|
</html>
|