aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/journal/templates/journal/linkartifact_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/journal/templates/journal/linkartifact_list.html')
-rw-r--r--bn_django/journal/templates/journal/linkartifact_list.html43
1 files changed, 0 insertions, 43 deletions
diff --git a/bn_django/journal/templates/journal/linkartifact_list.html b/bn_django/journal/templates/journal/linkartifact_list.html
deleted file mode 100644
index 136ce72..0000000
--- a/bn_django/journal/templates/journal/linkartifact_list.html
+++ /dev/null
@@ -1,43 +0,0 @@
-{% extends "journal/base.html" %}
-
-{% block otherhead %}{{ block.super}}
-<link rel="alternate" type="application/rss+xml" title="RSS" href="/journal/rss/latest_links/">
-{% endblock %}
-
-{% block path %}<a href="/artifacts/">artifacts</a>
- &raquo;<a href="/artifacts/links/"> links</a>
-{% 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 />
-{% if object_list %}
-<ul style="list-style: none;margin-left:10px;">
- {% for item in object_list %}
- <li style="margin-bottom: 8px;"/><a href="{{ item.id }}/" style="font-size:140%;">{{item.title}}</a>
- {% if item.html_caption %}
- &nbsp;"{{item.html_caption|safe|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> -
- {{ item.url|urlizetrunc:70 }}</i>
- {% endfor %}
-</ul>
-{% else %}
-<p>No links have been entered yet.</p>
-{% endif %}
-
-{% if is_paginated %} {% if has_previous %}
-<a href="./?page={{ previous }}">&laquo; previous</a> |
-{% endif %} {% if has_next %}
-<a href="./?page={{ next }}">next &raquo;</a>
-{% endif %} {% endif %}
-{% endblock %}