aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/bookmarks.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/templates/bookmarks.html')
-rw-r--r--src/web/templates/bookmarks.html13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html
index 3e65d2c0..40a7e7b9 100644
--- a/src/web/templates/bookmarks.html
+++ b/src/web/templates/bookmarks.html
@@ -5,9 +5,16 @@
<ul class="list-group">
{% for bookmark in bookmarks %}
<li class="list-group-item">
- <a href="{{ bookmark.href }}">{{ bookmark.href }}</a>&nbsp;
- <a href="{{ bookmark.href }}">{{ bookmark.tags_proxy }}</a>&nbsp;
- <a href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
+ <a href="#">
+ <h4 class="list-group-item-heading">
+ <a href="{{ bookmark.href }}">{{ bookmark.title }}</a>
+ </h4>
+ <p class="list-group-item-text">
+ {{ bookmark.description }}<br />
+ {{ ", ".join(bookmark.tags_proxy) }}
+ <a href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
+ </p>
+ </a>
</li>
{% endfor %}
</ul>
bgstack15