From 7f93a023d0b0bceaf6df4aa9bfb61f4a3acefa66 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Sun, 12 Nov 2017 17:04:00 -0800 Subject: [PATCH] Adds wiki base template --- pinaxcon/templates/wiki/base.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pinaxcon/templates/wiki/base.html diff --git a/pinaxcon/templates/wiki/base.html b/pinaxcon/templates/wiki/base.html new file mode 100644 index 0000000..723ac63 --- /dev/null +++ b/pinaxcon/templates/wiki/base.html @@ -0,0 +1,30 @@ +{% extends "wiki/base_site.html" %} +{% load staticfiles %} +{% load compress %} +{% load sekizai_tags %} + +{% block wiki_body %} + {% addtoblock "css" %} + {% compress css %} + + {% endcompress %} + {% endaddtoblock %} + + {{ block.super }} +{% endblock %} + +{% block wiki_site_title %} - North Bay Python Wiki{% endblock %} + +{% block wiki_header_branding %} +North Bay Python +{% endblock %} + +{% block wiki_header_navlinks %} + +{% endblock %} + +{% block wiki_footer_prepend %} + All contributions to this wiki page are licensed under a Creative Commons Attribution-ShareAlike 4.0 licence. +{% endblock %}