{% extends "base.html" %} {% set active_tab = '' %} {% block title %}Second Brain - All Pages{% endblock %} {% block content %} {% if pages %}
{% for page in pages %}

{{ page.title }}

{% if page.snippet %}

{{ page.snippet }}

{% endif %}
{% if page.tags %} {% for tag in page.tags.split(',') %} {% if tag.strip() %} {{ tag.strip() }} {% endif %} {% endfor %} {% endif %} {% if page.updated %} Updated {{ page.updated }} {% endif %}
{% endfor %}
{% else %}

No pages found

Your wiki is empty or no results match.

{% if query or tag_filter %} Clear {% endif %}
{% endif %} {% endblock %}