aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_wiki/templates/git_wiki/base.html
blob: 82884c3e9b0f646296442194e6d09ca7ba587c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "base.html" %}

{% block stylesheets %}
{{ block.super }}
<!--<link rel="STYLESHEET" type="text/css" href="style/git_wiki.css" />
<link rel="STYLESHEET" type="text/css" href="/style/git_wiki.css" />-->
<link rel="STYLESHEET" type="text/css" href="http://static.bryannewbold.com/style/git_wiki.css" />

{% endblock %}

{% block path %}
{{ block.super }}
<a href="/knowledge">knowledge</a>
{% endblock %}

{% block title %}
{% if item %}
{{ item.title }}
{% endif %}
{% endblock %}

{% block content %}
    {% block gitwiki %}
    {% endblock %}
{% endblock %}