diff --git a/pinaxcon/templates/wiki/base.html b/pinaxcon/templates/wiki/base.html new file mode 100644 index 0000000000000000000000000000000000000000..c4b1e707813c7d2062aa68df903147ad237dcb62 --- /dev/null +++ b/pinaxcon/templates/wiki/base.html @@ -0,0 +1,32 @@ +{% extends "wiki/base_site.html" %} +{% load staticfiles %} +{% load compress %} +{% load sitetree %} +{% 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 %}