diff options
author | Bryan Newbold <bnewbold@animus.robocracy.org> | 2007-02-24 21:39:51 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@animus.robocracy.org> | 2007-02-24 21:39:51 -0800 |
commit | c69b55610e3cceb5cbd48784fb7cc0458d463f3a (patch) | |
tree | e826ef345f257fce2d627af810d6e364d10de201 /bn_django/git_wiki/templates | |
parent | 71520ba4e171195c983320b9c00e37c215fad39c (diff) | |
download | bnewnet-c69b55610e3cceb5cbd48784fb7cc0458d463f3a.tar.gz bnewnet-c69b55610e3cceb5cbd48784fb7cc0458d463f3a.zip |
Revert "i'm confused?"
This reverts commit 71520ba4e171195c983320b9c00e37c215fad39c.
Diffstat (limited to 'bn_django/git_wiki/templates')
-rw-r--r-- | bn_django/git_wiki/templates/git_wiki/base.html | 5 | ||||
-rw-r--r-- | bn_django/git_wiki/templates/git_wiki/item.html | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/bn_django/git_wiki/templates/git_wiki/base.html b/bn_django/git_wiki/templates/git_wiki/base.html index ded3c25..eefaa9a 100644 --- a/bn_django/git_wiki/templates/git_wiki/base.html +++ b/bn_django/git_wiki/templates/git_wiki/base.html @@ -4,16 +4,13 @@ {{ 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" /> +<!--<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> -{% if item %} - » <a href="/k/{{ item.slug }}/">{{ object.title }}</a> -{% endif %} {% endblock %} {% block title %} diff --git a/bn_django/git_wiki/templates/git_wiki/item.html b/bn_django/git_wiki/templates/git_wiki/item.html index 0df1b72..7562fc6 100644 --- a/bn_django/git_wiki/templates/git_wiki/item.html +++ b/bn_django/git_wiki/templates/git_wiki/item.html @@ -1,11 +1,15 @@ {% extends "git_wiki/base.html" %} +{% load markup %} + {% block path %}{{ block.super }} » <a href="/k/{{ item.slug }}/"> {{ item.path }}</a>{% endblock %} {% block title %}Knowledge Item: {{ item.path }}{% endblock %} {% block gitwiki %} + {{ item.contents|restructuredtext }} + <br /><hr /> <h3>Item name:</h3> <span class="hash">{{ item.name }}</span> <h3>Item sha1 hash:</h3> |