{% extends "base.html" %} {% block title %}Knowledge — MemForge{% endblock %} {% block content %}

Knowledge

{{ articles | length }} article(s)
{% if q or type_filter or tag %} Clear {% endif %}
{% if not articles %}
{% if q or type_filter or tag %}

No articles match your filters.

{% else %}

No articles yet.

Run mem compile to build knowledge from daily logs.

{% endif %}
{% endif %}
{% for a in articles %}
{{ a.front_matter.type }} {{ a.front_matter.title }}
{{ a.front_matter.confidence }} {{ a.front_matter.updated.strftime('%b %d') }}
{% endfor %}
{% endblock %}