From 62b3afeeedfe054345f86093e2d243e956c1e3c9 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 26 Feb 2020 11:27:31 +0100 Subject: The project is now using Poetry. --- src/web/templates/bookmarks.html | 74 ---------------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 src/web/templates/bookmarks.html (limited to 'src/web/templates/bookmarks.html') diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html deleted file mode 100644 index a3ec4580..00000000 --- a/src/web/templates/bookmarks.html +++ /dev/null @@ -1,74 +0,0 @@ -{% extends "layout.html" %} -{% block content %} -
-
-
- {{ pagination.info }} -
-
- {% if current_user.is_authenticated %} - all ⸱  - private ⸱  - public ⸱  - unread - {% endif %} -
-
-
-
-
- {% if tag %} -   {{ tag }} - {% endif %} - {% if query %} -   {{ query }} - {% endif %} -
-
-
-
- - -
-
-
-
-
-
-
- {{ pagination.links }} -
-
- -
-
-
    - {% for bookmark in bookmarks %} -
  • - -

    - {{ bookmark.title }} -

    -

    -

    {{ bookmark.description }}
    -
    {% for tag in bookmark.tags %}{{ tag.text }} {% endfor %}
    - {{ bookmark.time | datetime }} - {% if current_user.is_authenticated %} - edit - delete - {% endif %} -

    - -
  • - {% endfor %} -
-
-
-
-
-
- {{ pagination.links }} -
-
-
-{% endblock %} -- cgit