mirror of
https://github.com/svemagie/indiekit-endpoint-microsub.git
synced 2026-04-02 15:35:00 +02:00
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
18 lines
572 B
Plaintext
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 %}
|