diff options
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 %}  | 
