src/iconolab/templates/iconolab_base.html
author Harris Baptiste <harris.baptiste@iri.centrepompidou.fr>
Fri, 01 Jul 2016 10:40:02 +0200
changeset 43 ccc449ef6f16
parent 17 ad201ca2f0e8
child 44 6730ec4d7e37
permissions -rw-r--r--
Fixing drawing component

{% load staticfiles %}
<!DOCTYPE html>
<html>

{% block head %}
	<head>
		<title>{% block title %} {% endblock %}</title>
		
		{% block main_js %}
			<!--<script src="{% static 'iconolab/js/dist/bundle.js' %}" type="text/javascript"></script>-->
			<script src="{% static 'iconolab/js/iconolab-bundle/dist/build.js' %}" type="text/javascript"></script>
		{% endblock %}
		{% block page_js %} {% endblock %}

		{% block main_css %}		
			<link rel="stylesheet" href="{% static 'iconolab/js/node_modules/bootstrap/dist/css/bootstrap.min.css' %}">
			<link rel="stylesheet" href="{% static 'iconolab/js/node_modules/font-awesome/css/font-awesome.min.css' %}">
			<link rel="stylesheet" href="{% static 'iconolab/css/iconolab.css' %}">
		{% endblock %}
		
		{% block page_css %} {% endblock %}

	</head>
{% endblock %}

	<body>
		<!-- navigation -->
	    <div class="container">
	    	{% include "partials/header.html"%}
			{% block content %} {% endblock %}
	    </div>
	    {% block footer_js %}

	    {% endblock %}
	</body>
</html>