Add Agender Pride Day
This commit is contained in:
parent
37bbaae72e
commit
bfe6fc58b4
|
@ -47,6 +47,8 @@ function getTodayEvent() {
|
||||||
return "Lesbian Visibility Day";
|
return "Lesbian Visibility Day";
|
||||||
else if (month == 5 && day == 17)
|
else if (month == 5 && day == 17)
|
||||||
return "IDAHOBIT";
|
return "IDAHOBIT";
|
||||||
|
else if (month == 5 && day == 19)
|
||||||
|
return "Agender Pride Day";
|
||||||
else if (month == 5 && day == 25)
|
else if (month == 5 && day == 25)
|
||||||
return "Pansexual and Panromantic Awareness & Visibility Day";
|
return "Pansexual and Panromantic Awareness & Visibility Day";
|
||||||
else if (month == 6)
|
else if (month == 6)
|
||||||
|
@ -86,6 +88,9 @@ function getBanner(day) {
|
||||||
case "IDAHOBIT":
|
case "IDAHOBIT":
|
||||||
return "flag-progress";
|
return "flag-progress";
|
||||||
break;
|
break;
|
||||||
|
case "Agender Pride Day":
|
||||||
|
return "flag-agender";
|
||||||
|
break;
|
||||||
case "Pansexual and Panromantic Awareness & Visibility Day":
|
case "Pansexual and Panromantic Awareness & Visibility Day":
|
||||||
return "flag-pan";
|
return "flag-pan";
|
||||||
break;
|
break;
|
||||||
|
@ -139,6 +144,11 @@ function getBlurbHtml(day) {
|
||||||
Today is <a href="https://may17.org" target="_blank">International Day Against Homophobia, Biphobia and Transphobia</a></span>
|
Today is <a href="https://may17.org" target="_blank">International Day Against Homophobia, Biphobia and Transphobia</a></span>
|
||||||
`;
|
`;
|
||||||
break;
|
break;
|
||||||
|
case "Agender Pride Day":
|
||||||
|
return `
|
||||||
|
Today is <a href="https://www.believeoutloud.com/voices/article/agender-pride-day/" target="_blank">Agender Pride Day</a></span>
|
||||||
|
`;
|
||||||
|
break;
|
||||||
case "Pansexual and Panromantic Awareness & Visibility Day":
|
case "Pansexual and Panromantic Awareness & Visibility Day":
|
||||||
return `
|
return `
|
||||||
Today is <a href="https://genderedintelligence.co.uk/panvisibilityday" target="_blank">Pansexual and Panromantic Visibility Day</a>
|
Today is <a href="https://genderedintelligence.co.uk/panvisibilityday" target="_blank">Pansexual and Panromantic Visibility Day</a>
|
||||||
|
|
Loading…
Reference in New Issue