The working notes, the roadmap and the eight topic notes now live on the wiki, so the twelve places in the source that said "see CLAUDE.md" were pointing at a file this repository no longer has. They say "see the working notes" now, and the README opens onto the wiki rather than onto two files beside it. Four references are deliberately untouched -- prompts.py, settings_store.py, admin/agents.html and the whole of agent/instructions.py. Those name AGENTS.md and CLAUDE.md as the file an agent chat looks for in *somebody else's* project directory. Rewriting them would have broken the feature while looking tidy. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% from "_macros.html" import mark %}
|
|
{#
|
|
Shown by the service worker when a navigation cannot reach the server.
|
|
|
|
Cached at install time, so it has to stand entirely on its own: no user, no
|
|
chats, nothing that was rendered from the database. One of the few places
|
|
flavour belongs -- see the flavour rule in the working notes.
|
|
#}
|
|
|
|
{% block title %}Offline - {{ brand.name }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<main class="auth">
|
|
<div class="auth__card" style="text-align: center">
|
|
{{ mark(cls="empty__mark", uid="offline") }}
|
|
<h1 class="auth__title" style="margin-top: var(--sp-4)">{{ brand.text.offline_title }}</h1>
|
|
<p class="empty__text" style="margin: var(--sp-3) auto var(--sp-5)">
|
|
{{ brand.text.offline_line }}
|
|
</p>
|
|
<p class="text-sm muted" style="margin-bottom: var(--sp-5)">
|
|
{{ brand.name }} answers from your server, so there is nothing to read until it can
|
|
be reached again.
|
|
</p>
|
|
<button class="btn btn--primary" type="button" onclick="window.location.reload()">
|
|
Try again
|
|
</button>
|
|
</div>
|
|
</main>
|
|
{% endblock %}
|