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>