{% extends "base.html" %} {% set heading = 'Page not found' if status_code == 404 else status_label %} {% block title %}{{ heading }}{% endblock %} {% block topbar_main %}

{{ heading }}

{% endblock %} {# One page for every error a browser meets. A 404 gets the most help, because it is the one a stale link leads to: a plan retired, a memory forgotten, a project deleted, or a teammate's link to something not synced to this machine yet. It says which address was asked for, and offers the places people most often meant. #} {% block content %}
{% if status_code == 404 %}

Nothing lives at this address

{{ path }}

{% if detail and detail != 'Not Found' %}

{{ detail }}.

{% endif %}

If a link from an agent or a teammate brought you here, what it pointed at may have been deleted or retired, or not synced to this machine yet.

Back to Dashboard
Where to go instead
ProjectsEvery repository flanner manages on this machine
Open
PlansEvery plan, newest first
Open
MemoryWhat later sessions need to know, including forgotten memories
Open

Press Ctrl K to search every project and plan by name.

{% else %}

{{ status_code }} {{ status_label }}

{{ detail }}

Back to Dashboard
{% endif %}
{% endblock %}