mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-14 22:19:32 +02:00

* Implement archive function (#46) * Implement archive view (#46) * Filter tags for archived/unarchived (#46) * Implement archived bookmarks endpoint (#46) * Implement archive mode for search component (#46) * Move bookmarklet to settings (#46) * Update modified timestamp on archive/unarchive (#46) * Fix bookmarklet (#46)
35 lines
989 B
HTML
35 lines
989 B
HTML
{% extends "bookmarks/layout.html" %}
|
|
{% load static %}
|
|
{% load shared %}
|
|
{% load bookmarks %}
|
|
|
|
{% block content %}
|
|
<div class="bookmarks-page columns">
|
|
|
|
{# Bookmark list #}
|
|
<section class="content-area column col-8 col-md-12">
|
|
<div class="content-area-header">
|
|
<h2>Archived bookmarks</h2>
|
|
<div class="spacer"></div>
|
|
{% bookmark_search query tags mode='archive' %}
|
|
</div>
|
|
|
|
{% if empty %}
|
|
{% include 'bookmarks/empty_bookmarks.html' %}
|
|
{% else %}
|
|
{% bookmark_list bookmarks return_url %}
|
|
{% endif %}
|
|
</section>
|
|
|
|
{# Tag list #}
|
|
<section class="content-area column col-4 hide-md">
|
|
<div class="content-area-header">
|
|
<h2>Tags</h2>
|
|
</div>
|
|
{% tag_cloud tags %}
|
|
</section>
|
|
</div>
|
|
|
|
<script src="{% static "bundle.js" %}"></script>
|
|
{% endblock %}
|