Skip to content

Commit 5595139

Browse files
committed
show pride logo sometimes outside of June
1 parent a67b6ad commit 5595139

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ pub fn Site() -> impl IntoView {
142142
let mut logo_src = "/assets/uiua-logo.png";
143143
if visits % 8 == 0 {
144144
logo_src = "/assets/uiua-logo-scrambledine.png";
145-
} else if Date::new_0().get_month() == 5 {
145+
} else if visits % 10 == 0 || Date::new_0().get_month() == 5 {
146146
logo_src = "/assets/uiua-logo-pride.png";
147147
}
148148

0 commit comments

Comments
 (0)