diff --git a/pinaxcon/templates/site_base.html b/pinaxcon/templates/site_base.html new file mode 100644 index 0000000000000000000000000000000000000000..91e94fd5db844a5d6c3346c422a82e86067a7c6f --- /dev/null +++ b/pinaxcon/templates/site_base.html @@ -0,0 +1,54 @@ +{% extends "theme_bootstrap/base.html" %} + +{% load staticfiles %} +{% load metron_tags %} +{% load i18n %} +{% load sitetree %} + + +{% block styles %} + {% include "_styles.html" %} +{% endblock %} + + +{% block extra_head_base %} + {% block extra_head %}{% endblock %} +{% endblock %} + +{% block nav %} + {% sitetree_menu from "main" include "trunk" template "sitetree/menu_bootstrap3.html" %} +{% endblock %} + +{% block body_base %} +
+
+ {% include "_messages.html" %} +
+
+ {% block body %} + {% endblock %} +
+
+ {% block sidebar %} + {% include "_default_sidebar.html" %} + {% endblock %} +
+
+
+
+{% endblock %} + + +{% block footer %} + {% include "_footer.html" %} +{% endblock %} + + +{% block scripts %} + {% include "_scripts.html" %} +{% endblock %} + +{% block extra_body_base %} + {% analytics %} + {% block extra_body %}{% endblock %} +{% endblock %}