mirror of
https://github.com/svemagie/indiekit-endpoint-microsub.git
synced 2026-04-02 15:35:00 +02:00
Three reader views accessible via icon toolbar: - Channels: existing view (renamed), per-channel timelines - Deck: TweetDeck-style configurable columns with compact cards - Timeline: all channels merged chronologically with colored borders Includes channel color palette, cross-channel query, deck config storage, session-based view preference, and view switcher partial.
12 lines
315 B
Plaintext
12 lines
315 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">
|
|
{% include "partials/view-switcher.njk" %}
|
|
{% block reader %}{% endblock %}
|
|
{% endblock %}
|