mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-14 22:19:32 +02:00
47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
{% extends "bookmarks/layout.html" %}
|
|
{% load static %}
|
|
{% load shared %}
|
|
{% load bookmarks %}
|
|
|
|
{% block content %}
|
|
<div class="bookmarks-page grid columns-md-1"
|
|
ld-bulk-edit
|
|
ld-bookmark-page
|
|
bookmarks-url="{% url 'bookmarks:partials.bookmark_list.active' %}"
|
|
tags-url="{% url 'bookmarks:partials.tag_cloud.active' %}">
|
|
|
|
{# Bookmark list #}
|
|
<section class="content-area col-2">
|
|
<div class="content-area-header mb-0">
|
|
<h2>Bookmarks</h2>
|
|
<div class="d-flex">
|
|
{% bookmark_search bookmark_list.filters tag_cloud.tags %}
|
|
{% include 'bookmarks/bulk_edit/toggle.html' %}
|
|
</div>
|
|
</div>
|
|
|
|
<form class="bookmark-actions" action="{% url 'bookmarks:index.action' %}?q={{ bookmark_list.filters.query|urlencode }}&return_url={{ bookmark_list.return_url }}"
|
|
method="post" autocomplete="off">
|
|
{% csrf_token %}
|
|
{% include 'bookmarks/bulk_edit/bar.html' with disable_actions='bulk_unarchive' %}
|
|
|
|
<div class="bookmark-list-container">
|
|
{% include 'bookmarks/bookmark_list.html' %}
|
|
</div>
|
|
</form>
|
|
</section>
|
|
|
|
{# Tag cloud #}
|
|
<section class="content-area col-1 hide-md">
|
|
<div class="content-area-header mb-4">
|
|
<h2>Tags</h2>
|
|
</div>
|
|
<div class="tag-cloud-container">
|
|
{% include 'bookmarks/tag_cloud.html' %}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<script src="{% static "bundle.js" %}?v={{ app_version }}"></script>
|
|
{% endblock %}
|