The Blog page should now be able to show all.

This commit is contained in:
2025-09-08 20:52:42 -04:00
parent c3ee3bef0a
commit fe87b2f195
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ pub fn Blog(tag: String) -> Element
{
let mut categories: Vec<String> = vec![];
if !tag.is_empty()
if !tag.is_empty() && tag != "all"
{
categories.push(tag);
}