From 8918766eee10d70bead748dacb5b800427ae7b03 Mon Sep 17 00:00:00 2001 From: nano Date: Sun, 3 May 2026 16:30:25 +0000 Subject: [PATCH] Make the site more editorial --- app/controllers/HomeController.asp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/controllers/HomeController.asp b/app/controllers/HomeController.asp index ddee9c4..358f061 100644 --- a/app/controllers/HomeController.asp +++ b/app/controllers/HomeController.asp @@ -25,6 +25,9 @@ Class HomeController_Class End Property Public Sub index() + Dim posts, categories + Set posts = PostsRepository().FindAllWhere("IsPublished = 1", "PublishedDate DESC", 0, 5) + Set categories = CategoriesRepository().Find(Empty, "Name") %> <%