{% extends "global/hero.njk" %}
{% block heroImg %}
{% endblock %}
{% block eventScript %}
if (todayEvent != "No event") {
heroTopBarEl.classList.remove('hidden');
heroTopBarEl.innerHTML = getBlurbHtml(todayEvent);
}
function getTodayEvent() {
const date = new Date();
const month = date.getMonth() + 1;
const day = date.getDate();
if (month == 7 && day == 16)
return "KotOR 1 Anniversary";
else if (month == 12 && day == 6)
return "KotOR 2 Anniversary";
else
return "No event";
}
function getBlurbHtml(day) {
switch (day) {
case "KotOR 1 Anniversary":
return `
Today is the anniversary of the release of Star Wars: Knihgts of the Old Republic
`;
break;
case "KotOR 2 Anniversary":
return `
Today is the anniversary of the release of Star Wars: Knights of the Old Republic II — The Sith Lords
`;
break;
default:
return ``;
}
}
{% endblock %}