diff --git a/pinaxcon/templates/wiki/base.html b/pinaxcon/templates/wiki/base.html new file mode 100644 index 0000000000000000000000000000000000000000..723ac636b203d093e5ae3b01871258a458aa75c3 --- /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 %}