Skip to content

Commit

Permalink
show pride logo sometimes outside of June
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikalii committed Jun 27, 2024
1 parent a67b6ad commit 5595139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ pub fn Site() -> impl IntoView {
let mut logo_src = "/assets/uiua-logo.png";
if visits % 8 == 0 {
logo_src = "/assets/uiua-logo-scrambledine.png";
} else if Date::new_0().get_month() == 5 {
} else if visits % 10 == 0 || Date::new_0().get_month() == 5 {
logo_src = "/assets/uiua-logo-pride.png";
}

Expand Down

0 comments on commit 5595139

Please sign in to comment.