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
11 lines
272 B
Plaintext
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 %}
|