From 50c3d544d4b7708475c8144bd87ec8ce2f73cd83 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 18 Mar 2015 10:34:27 +0100 Subject: [PATCH] Add mellon/base.html --- mellon/templates/mellon/base.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 mellon/templates/mellon/base.html diff --git a/mellon/templates/mellon/base.html b/mellon/templates/mellon/base.html new file mode 100644 index 0000000..0d30981 --- /dev/null +++ b/mellon/templates/mellon/base.html @@ -0,0 +1,11 @@ +{% extends "mellon/base.html" %} + +{% block extra_scripts %} + {% block mellon_extra_scripts %} + {% endblock %} +{% endblock %} + +{% block content %} + {% block mellon_content %} + {% endblock %} +{% endblock %}