From 34ce40fdb73eda0ae07ef62ddc713a4651b9bc7c Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 21 Feb 2007 01:06:47 -0800 Subject: created skeleton for git_wiki app --- bn_django/git_wiki/templates/git_wiki/base.html | 39 ++++++++++++++++++++++ .../git_wiki/templates/git_wiki/frontpage.html | 36 ++++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 bn_django/git_wiki/templates/git_wiki/base.html create mode 100644 bn_django/git_wiki/templates/git_wiki/frontpage.html (limited to 'bn_django/git_wiki/templates') diff --git a/bn_django/git_wiki/templates/git_wiki/base.html b/bn_django/git_wiki/templates/git_wiki/base.html new file mode 100644 index 0000000..6107c04 --- /dev/null +++ b/bn_django/git_wiki/templates/git_wiki/base.html @@ -0,0 +1,39 @@ +{% extends "base.html" %} + +{% block stylesheets %} +{{ block.super }} + + + + +{% endblock %} + +{% block path %} +{{ block.super }} +knowledge +{% if item %} + » {{ object.title }} +{% endif %} +{% endblock %} + +{% block title %} +{% if item %} +{{ item.title }} +{% endif %} +{% endblock %} + +{% block content %} +{% if item %} + {% block gitwiki %} + {% endblock %} +
+ + pdf - log + +
+{% else %} +

No such knowledge!

+

Perhaps you meant...

+{% endif %} + +{% endblock %} diff --git a/bn_django/git_wiki/templates/git_wiki/frontpage.html b/bn_django/git_wiki/templates/git_wiki/frontpage.html new file mode 100644 index 0000000..897bf8b --- /dev/null +++ b/bn_django/git_wiki/templates/git_wiki/frontpage.html @@ -0,0 +1,36 @@ +{% extends "git_wiki/base.html" %} + +{% block title %}Knowledge Repository{% endblock %} + +{% block right_stuff %} +
+Get some knowledge:
+   - wikipedia
+   - internet archive
+   - mathworld +{% endblock %} + +{% block content %} +
+
This site is under active development!
+

There are undoubtedly bugs, errors, aesthetic travesties, ommissions, etc. +If you're curious you can track my work in the code section. +

+ +
+For more recent content see the timeline +
+ +

Latest knowledge

+{% if latest_knowledge %} +{% else %} +None yet! +{% endif %} +
+

Latest comments

+{% if latest_comments %} +{% else %} +None yet! +{% endif %} + +{% endblock %} -- cgit v1.2.3