Files
Ricardo 4819c229cd feat: restore full microsub implementation with reader UI
Restores complete implementation from feat/endpoint-microsub branch:
- Reader UI with views (reader.njk, channel.njk, feeds.njk, etc.)
- Feed polling, parsing, and normalization
- WebSub subscriber
- SSE realtime updates
- Redis caching
- Search indexing
- Media proxy
- Webmention processing
2026-02-06 20:20:25 +01:00

18 lines
572 B
Plaintext

{% extends "document.njk" %}
{% block main %}
<article class="main__container -!-container">
<header class="heading">
<h1 class="heading__title">
{{ __("microsub.error.notFound.title") | default("Not found") }}
</h1>
</header>
{{ prose({ text: __("microsub.error.notFound.description") | default("The item you're looking for could not be found.") }) }}
<p>
<a href="{{ baseUrl }}/channels" class="button button--secondary">
{{ __("microsub.reader.backToChannels") | default("Back to channels") }}
</a>
</p>
</article>
{% endblock %}