src/iconolab/templates/iconolab_base.html
author durandn
Thu, 07 Jul 2016 16:34:31 +0200
changeset 62 8702ab13783e
parent 44 6730ec4d7e37
child 98 2b738b88d483
permissions -rw-r--r--
design work on templates, redirect to home on /, implemented accept and reject revisions shortcuts when applicable

{% 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>
            <script src="{% static 'iconolab/js/iconolab-bundle/node_modules/jquery/dist/jquery.min.js' %}" type="text/javascript"></script>
		{% endblock %}
		{% block page_js %} {% endblock %}

		{% block main_css %}		
			<link rel="stylesheet" href="{% static 'iconolab/js/iconolab-bundle/node_modules/bootstrap/dist/css/bootstrap.min.css' %}">
			<link rel="stylesheet" href="{% static 'iconolab/js/iconolab-bundle/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>