Changeset - 7f93a023d0b0
[Not reviewed]
0 0 1
Christopher Neugebauer - 6 years ago 2017-11-13 01:04:00
chrisjrn@gmail.com
Adds wiki base template
1 file changed with 30 insertions and 0 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/wiki/base.html
Show inline comments
 
new file 100644
 
{% extends "wiki/base_site.html" %}
 
{% load staticfiles %}
 
{% load compress %}
 
{% load sekizai_tags %}
 

	
 
{% block wiki_body %}
 
  {% addtoblock "css" %}
 
    {% compress css %}
 
        <link rel="stylesheet" type="text/x-scss" href="{% static "scss/site.scss" %}">
 
    {% endcompress %}
 
  {% endaddtoblock %}
 

	
 
  {{ block.super }}
 
{% endblock %}
 

	
 
{% block wiki_site_title %} - North Bay Python Wiki{% endblock %}
 

	
 
{% block wiki_header_branding %}
 
<a class="navbar-brand" href="/">North Bay Python</a>
 
{% endblock %}
 

	
 
{% block wiki_header_navlinks %}
 
<ul class="nav navbar-nav">
 
  <li class="active"><a href="{% url 'wiki:root' %}">Wiki</a></li>
 
</ul>
 
{% endblock %}
 

	
 
{% block wiki_footer_prepend %}
 
  All contributions to this wiki page are licensed under a Creative Commons Attribution-ShareAlike 4.0 licence.
 
{% endblock %}
0 comments (0 inline, 0 general)