diff options
-rw-r--r-- | bn_django/git_wiki/templates/git_wiki/item.html | 2 | ||||
-rw-r--r-- | bn_django/templates/404.html | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/bn_django/git_wiki/templates/git_wiki/item.html b/bn_django/git_wiki/templates/git_wiki/item.html index 69332fd..51680ef 100644 --- a/bn_django/git_wiki/templates/git_wiki/item.html +++ b/bn_django/git_wiki/templates/git_wiki/item.html @@ -2,7 +2,7 @@ {% block stylesheets %} {{ block.super }} -<link rel="STYLESHEET" type="text/css" href="/style/docutils.css" /> +<link rel="STYLESHEET" type="text/css" href="/static/style/docutils.css" /> {% endblock %} {% block path %}{{ block.super }} » <a href="/k/{{ item.slug }}/"> diff --git a/bn_django/templates/404.html b/bn_django/templates/404.html new file mode 100644 index 0000000..e1f116e --- /dev/null +++ b/bn_django/templates/404.html @@ -0,0 +1,3 @@ +{% extends "base.html"%} +{% block title %}For oh four{% endblock %} +{% block content %}Whoopsie!{% endblock %} |