{% extends "share_links/base.html" %}
{% load share_links_templatetags markdownify i18n humanize %}
{% block title %}{% translate "List of collections" %} : {{ request.site.name }}{% endblock title %}
{% block content %}
{% include "share_links/partials/sort.html" %}
{% for collection in page_obj %}
{% include "share_links/partials/collection.html" %}
{% empty %}
{% translate "There's no collection yet!" %}
{% endfor %}
{% endblock %}
{% block pagination %}
{% include "share_links/partials/pagination.html" %}
{% endblock %}