Files
indiekit-endpoint-microsub/views/layouts/reader.njk
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

11 lines
272 B
Plaintext

{#
Microsub Reader Layout
Extends document.njk and adds reader-specific stylesheet
#}
{% extends "document.njk" %}
{% block content %}
<link rel="stylesheet" href="/assets/@rmdes-indiekit-endpoint-microsub/styles.css">
{% block reader %}{% endblock %}
{% endblock %}