summaryrefslogtreecommitdiffstats
path: root/templates/links/links.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/links/links.html')
-rw-r--r--templates/links/links.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/templates/links/links.html b/templates/links/links.html
deleted file mode 100644
index b911d80..0000000
--- a/templates/links/links.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{% extends "base.html" %}
-
-{% block subtitle %}
- links
-{% endblock %}
-
-{% block content %}
- <div class="container">
- <div class="header">
- <span class="title">links</span>
- </div>
- {% if bookmarklist %}
- {% for link in bookmarklist %}
- <a href="{{ link.url }}">{{ link.name }}</a><br/>
- {% endfor %}
- {% else %}
- No links, no where...
- {% endif %}
- </div>
-{% endblock %}