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

Catalog

Documents

{% if browse_tags %}

filtered by {% for t in browse_tags %}{{ t }}{% endfor %}

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