Use templates

This commit is contained in:
Joakim Hellsén 2026-03-26 19:25:53 +01:00
commit 297b95a3a8
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
4 changed files with 65 additions and 12 deletions

View file

@ -10,7 +10,8 @@ if TYPE_CHECKING:
urlpatterns: list[URLPattern | URLResolver] = [
path("", views.feed_list, name="feed-list"),
path("", views.home, name="home"),
path("feeds/", views.feed_list, name="feed-list"),
path("feeds/<int:feed_id>/", views.feed_detail, name="feed-detail"),
path(
"feeds/<int:feed_id>/entries/<int:entry_id>/",