{% 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 %}