From c7b29da94d3b85ec91f0d5e2789db11a43473df5 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 1 Feb 2009 06:25:10 -0500 Subject: lots went on: * rss feeds * some admin interface stuff * blah running issues: * admin interface with model inheretence? * rss feeds: unicode cool? * proper year/month implementation (don't want day) * right side bar info * dating issue (datetime vs date) --- bn_django/templates/about.html | 1 + bn_django/templates/base.html | 8 +++++--- bn_django/templates/comment_list | 2 +- bn_django/templates/frontpage.html | 2 ++ 4 files changed, 9 insertions(+), 4 deletions(-) (limited to 'bn_django/templates') diff --git a/bn_django/templates/about.html b/bn_django/templates/about.html index 16ebf99..1fcd7aa 100644 --- a/bn_django/templates/about.html +++ b/bn_django/templates/about.html @@ -20,6 +20,7 @@ This website is the web presence of Bryan Newbold. It serves as a:
brain dump
so I won't forget
photo gallery +
journal
rss aggregator
browsable code repository
so people (including myself!) don't have to rewrite diff --git a/bn_django/templates/base.html b/bn_django/templates/base.html index 6ccdc7f..d67b18f 100644 --- a/bn_django/templates/base.html +++ b/bn_django/templates/base.html @@ -22,15 +22,17 @@ {% endblock %} -{% block externaljs %} {% endblock %} +{% block externaljs %} {% endblock %} {% block otherhead %} {% endblock %} {% block windowtitle %}bnewbold.net{% endblock %} diff --git a/bn_django/templates/comment_list b/bn_django/templates/comment_list index 0629541..d00dc6a 100644 --- a/bn_django/templates/comment_list +++ b/bn_django/templates/comment_list @@ -16,7 +16,7 @@ {{ c.headline|escape|wordwrap:80 }}
{% endif %} - {{ c.comment|escape|wordwrap:80 }} + {{ c.comment|escape|linebreaks|wordwrap:80 }} {% endfor %} {% for c in free_comments %} diff --git a/bn_django/templates/frontpage.html b/bn_django/templates/frontpage.html index a8c0e40..a23b8ee 100644 --- a/bn_django/templates/frontpage.html +++ b/bn_django/templates/frontpage.html @@ -15,6 +15,8 @@
Other sites:
  - athena locker
+   - planet
+   - equator
{% endblock %} {% block content %} -- cgit v1.2.3