🔤 Ups docs to current state

This commit is contained in:
2026-06-11 13:24:14 +02:00
parent 656c2da8cf
commit a6eae3e3dd
9 changed files with 121 additions and 6 deletions
+8
View File
@@ -0,0 +1,8 @@
# `<app-episodes>`
Displays a list of podcast episodes.
## Subroutes
### `<app-:id>`
The component is routed to via `/episodes/:id?` where `:id` is an optional episode identifier used to show a specific episode.
+1 -1
View File
@@ -1,5 +1,5 @@
import { route } from "@/core/route.js";
import { routes as routeEpisode } from "./:id/routes.js";
import { routes as routeEpisode } from "./app-:id/routes.js";
import { html } from "lit";
export const path = "/episodes/" as const;