mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-14 05:59:29 +02:00
40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
{% extends "bookmarks/layout.html" %}
|
|
{% 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>Bookmarks</h2>
|
|
<div class="spacer"></div>
|
|
<div class="search">
|
|
<form action="{% url 'bookmarks:index' %}" method="get">
|
|
<div class="input-group">
|
|
<input type="search" name="q" placeholder="Search for words or #tags" value="{{ query }}">
|
|
<input type="submit" value="Search" class="btn input-group-btn">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</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>
|
|
|
|
{% endblock %}
|