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

Dashboard

{{ total_articles }}
Knowledge articles
{{ total_drafts }}
Drafts in inbox
{{ pinned | length }}
Pinned articles
📌 Pinned
{% for a in pinned %} {{ a.front_matter.title }} {{ a.front_matter.type }} {% else %}

No pinned articles. Use mem pin <slug>.

{% endfor %}
🕐 Recently updated
{% for a in recent %} {{ a.front_matter.title }} {{ a.front_matter.updated.strftime('%b %d') }} {% else %}

No articles yet. Run mem compile.

{% endfor %}
Quick commands
mem save — extract from latest session
mem compile — merge daily → knowledge
mem recall "query" — search
{% endblock %}