aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/journal/templates/journal/linkartifact_list.html
blob: ed40032db33705038d79962d294758b993d08030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{% 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 %}Interesting Links{% endblock %}

{% block content %}
<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>
  {% 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 %}