aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2020-11-16 08:56:21 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2020-11-16 08:56:21 +0100
commitf0d3bab718d26387bcbb8615a01c6e8579f8a844 (patch)
tree2eb0587c60b390002146303b72a8d3ba3e038d54 /templates
parentf2d1844b9dbb79953d17488c28b70677d0ceae20 (diff)
Show site url in the index
Diffstat (limited to 'templates')
-rw-r--r--templates/web/index.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/web/index.html b/templates/web/index.html
index 1d1d869..4436d23 100644
--- a/templates/web/index.html
+++ b/templates/web/index.html
@@ -10,7 +10,10 @@
<ul>
{% for entry in entries %}
<li id="{{ entry.eid }}">
- <a href="{{ url_for('entry', eid=entry.eid) }}">{{ entry }}</a>
+ <a href="{{ url_for('entry', eid=entry.eid) }}">
+ {{ entry.data.name }}
+ </a>
+ &lt;<a href="{{ entry.data.url }}">{{ entry.data.url }}</a>&gt;
</li>
{% endfor %}
</dl>