We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a67b6ad commit 5595139Copy full SHA for 5595139
site/src/main.rs
@@ -142,7 +142,7 @@ pub fn Site() -> impl IntoView {
142
let mut logo_src = "/assets/uiua-logo.png";
143
if visits % 8 == 0 {
144
logo_src = "/assets/uiua-logo-scrambledine.png";
145
- } else if Date::new_0().get_month() == 5 {
+ } else if visits % 10 == 0 || Date::new_0().get_month() == 5 {
146
logo_src = "/assets/uiua-logo-pride.png";
147
}
148
0 commit comments