Move redirect rule to 2 row, remove no-wrap (#55)

- Fix redirect rule handling with endpoint routing (#59)
- Make subtitle non-nullable string (#47)
This commit is contained in:
2026-07-18 12:50:27 -04:00
parent 816a156d79
commit 3a19952f39
6 changed files with 14 additions and 17 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ let pageOfCategorizedPosts slugAndPage : HttpHandler = fun next ctx -> task {
return!
{ viewCtx with
PageTitle = $"{cat.Name}: Category Archive{pgTitle}"
Subtitle = cat.Description
Subtitle = defaultArg cat.Description ""
IsCategory = true
IsCategoryHome = (pageNbr = 1)
Slug = Some slug }