diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2020-11-16 08:56:21 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2020-11-16 08:56:21 +0100 |
commit | f0d3bab718d26387bcbb8615a01c6e8579f8a844 (patch) | |
tree | 2eb0587c60b390002146303b72a8d3ba3e038d54 | |
parent | f2d1844b9dbb79953d17488c28b70677d0ceae20 (diff) |
Show site url in the index
-rw-r--r-- | templates/web/index.html | 5 |
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> + <<a href="{{ entry.data.url }}">{{ entry.data.url }}</a>> </li> {% endfor %} </dl> |