2022-10-03 20:27:19 -07:00
|
|
|
<style>
|
|
|
|
span.magic {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: larger;
|
|
|
|
color: #e84545;
|
|
|
|
animation: 3s linear 0s infinite normal both running magic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes magic {
|
|
|
|
0% { color: #e84545; }
|
|
|
|
33% { color: #45e845; }
|
|
|
|
66% {color: #4545e8; }
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<ol>
|
2024-05-03 22:41:24 -07:00
|
|
|
<li>
|
2025-01-31 14:58:25 -08:00
|
|
|
<a href="/events">
|
|
|
|
Next Weekly Meeting: <span class="magic"></span>
|
2024-05-03 22:41:24 -07:00
|
|
|
</a>
|
|
|
|
</li>
|
2022-10-03 20:27:19 -07:00
|
|
|
</ol>
|
2025-01-31 14:58:25 -08:00
|
|
|
<script>
|
|
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
|
|
var nextThursday = new Date(Date.now() + (((4 - new Date().getDay() + 7) % 7) * 86400000));
|
|
|
|
document.querySelector('span.magic').innerHTML = nextThursday.toDateString();
|
|
|
|
});
|
|
|
|
</script>
|