35 lines
		
	
	
		
			955 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			955 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<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>
 | 
						|
<!--
 | 
						|
<ul>
 | 
						|
    <li>
 | 
						|
        <a href="/events">
 | 
						|
            Next Weekly Meeting: <span class="magic" id="next-meeting-date"></span> at 6 PM, Slichter Hall Room 2834
 | 
						|
        </a>
 | 
						|
    </li>
 | 
						|
    <li>
 | 
						|
        <a href="/wiki/emails">
 | 
						|
            <span class="magic">ACTION REQUIRED:</span> Enroll in Email Multi-Factor Authentication
 | 
						|
        </a>
 | 
						|
    </li>
 | 
						|
</ul>
 | 
						|
-->
 | 
						|
<script>
 | 
						|
    document.addEventListener('DOMContentLoaded', function () {
 | 
						|
        var nextThursday = new Date(Date.now() + (((4 - new Date().getDay() + 7) % 7) * 86400000));
 | 
						|
        document.getElementById('next-meeting-date').innerHTML = nextThursday.toDateString();
 | 
						|
    });
 | 
						|
</script>
 |