{% extends "base.html" %} {% from "_partials/cards.html" import doc_card %} {% block main %}

Catalog

Documents

{% for t in shell.tags if t.on %} {{ t.label }} {% endfor %} {{ docs | length }} of {{ total_docs }} documents
{% for d in docs %}{{ doc_card(d) }} {% else %}
{% if browse_tags %}

No documents match those tags.

Check the tag spelling or browse all documents.

{% else %}

No documents in the store yet.

Ingest and publish a document to see it here.

{% endif %}
{% endfor %}
{% endblock %}