mirror of
https://github.com/ConjureETS/site-2015.git
synced 2026-03-24 04:21:23 +00:00
76 lines
3.2 KiB
HTML
76 lines
3.2 KiB
HTML
{% load staticfiles %}
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link rel="icon" href="favicon.ico">
|
|
|
|
<title>Conjure</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
|
|
<!-- Custom CSS -->
|
|
<link href="{% static 'css/style.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/timeline2.css' %}" rel="stylesheet">
|
|
<!-- Custom Fonts -->
|
|
<link href="{% static 'css/font-awesome.min.css' %}" rel="stylesheet" type="text/css">
|
|
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
|
|
<link href="http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="navbar-wrapper">
|
|
<div class="container">
|
|
|
|
<nav class="navbar navbar-default navbar-fixed-top">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
<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="#"><img src="{% static 'img/conjure_logo.png' %}" height="40px"></a>
|
|
</div>
|
|
<div id="navbar" class="navbar-collapse collapse">
|
|
<ul class="nav navbar-nav">
|
|
<li><a href="{% url 'index' %}">Accueil</a></li>
|
|
<li><a href="{% url 'blog:index' %}">Blog</a></li>
|
|
<li><a href="{% url 'project:index' %}">Projets</a></li>
|
|
<li><a href="{% url 'member:index' %}">Membres</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
</div>
|
|
</div><!--/.navbar -->
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<div class="scroll-top page-scroll visible-xs visible-sm">
|
|
<a class="btn btn-primary" href="#page-top">
|
|
<i class="fa fa-chevron-up"></i>
|
|
</a>
|
|
</div>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
|
<script src="{% static 'js/bootstrap.min.js' %}"></script>
|
|
<script src="{% static 'js/jquery.js' %}"></script>
|
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
|
|
<script src="{% static 'js/classie.js' %}"></script>
|
|
<script src="{% static 'js/cbpAnimatedHeader.js' %}"></script>
|
|
<script src="{% static 'js/jqBootstrapValidation.js' %}"></script>
|
|
<script src="{% static 'js/contact_me.js' %}"></script>
|
|
<script src="{% static 'js/freelancer.js' %}"></script>
|
|
<script src="{% static 'js/timeline.js' %}"></script>
|
|
<script src="{% static 'js/timelinemod.js' %}"></script>
|
|
</body>
|
|
</html>
|