diff options
author | bnewbold <bnewbold@ziggy.(none)> | 2009-12-02 20:35:49 -0500 |
---|---|---|
committer | bnewbold <bnewbold@ziggy.(none)> | 2009-12-02 20:35:49 -0500 |
commit | 449f74df4729f67c89190efdde22249771215bd5 (patch) | |
tree | 4eee4beac28e08ec916baa059aa078d46d175b8e /bn_django | |
parent | c25464ef93890d7e890d046c98c32b3c5126433d (diff) | |
download | bnewnet-449f74df4729f67c89190efdde22249771215bd5.tar.gz bnewnet-449f74df4729f67c89190efdde22249771215bd5.zip |
minorly improved link listings
Diffstat (limited to 'bn_django')
-rw-r--r-- | bn_django/journal/templates/journal/linkartifact_list.html | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/bn_django/journal/templates/journal/linkartifact_list.html b/bn_django/journal/templates/journal/linkartifact_list.html index ed40032..6caaffa 100644 --- a/bn_django/journal/templates/journal/linkartifact_list.html +++ b/bn_django/journal/templates/journal/linkartifact_list.html @@ -8,19 +8,27 @@ »<a href="/artifacts/links/"> links</a> {% endblock %} -{% block title %}Interesting Links{% endblock %} +{% block title %}Links Galore!{% endblock %} +{% block right_stuff %} +This page has an <a href="/journal/rss/latest_links/">RSS feed</a>. +{%endblock %} {% block content %} +New favorite finds from the net. Good posts from +<a href="/oldlinks">RSS feeds</a> +end up at <a href="http://feeds.bnewbold.net">feeds.bnewbold.net</a>. +<br /> <br /> -<div class="notice"> -This page has an <a href="/journal/rss/latest_links/">RSS feed</a>. -</div> - {% if object_list %} <ul> {% for item in object_list %} - <li /><a href="{{ item.id }}/">{{item.title}}</a>: - <i><a href="{{ item.url }}">{{item.url}}</a></i> + <li style="margin-bottom: 8px;"/><a href="{{ item.id }}/" style="font-size:140%;">{{item.title}}</a> + {% if item.html_caption %} + "{{item.html_caption|truncatewords_html:10}}"{%endif%} + <br /><i style="padding-left: 15px; font-size:90%;"> + added {{item.date|date:"D, M d, Y"}} - + <a href="{{ item.id }}/">more info</a> - + <a href="{{ item.url }}">{{item.url}}</a></i> {% endfor %} </ul> {% else %} |