Skip to content

Commit

Permalink
last updated
Browse files Browse the repository at this point in the history
  • Loading branch information
acesnik committed Sep 24, 2024
1 parent 5e80e82 commit 29f99bf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ <h1>BioE Postdoc Chalk Talk Series | BioE Beer, Boba, & Bites</h1>

<div class="section">
<div class="section-title">Future Events</div>
<ul>
<li>Thursday, October 3, 2024, 3:30 PM, Shriram 262 (Tentative)</li>
<li>Thursday, November 7, 2024, 3:30 PM, Shriram 262 (Tentative)</li>
<li>Thursday, December 5, 2024, 3:30 PM, Shriram 262 (Tentative)</li>
</ul>
</div>

<div class="section">
Expand Down Expand Up @@ -120,7 +125,19 @@ <h1>BioE Postdoc Chalk Talk Series | BioE Beer, Boba, & Bites</h1>

<footer>
<p>&copy; 2024 Stanford University. All rights reserved.</p>
<p>Last Updated: <span id="last-updated"></span></p>
</footer>
<script>
// Get the current date
const lastUpdated = new Date();

// Format the date to a readable format (e.g., September 23, 2024)
const options = { year: 'numeric', month: 'long', day: 'numeric' };
const formattedDate = lastUpdated.toLocaleDateString(undefined, options);

// Insert the formatted date into the footer
document.getElementById('last-updated').textContent = formattedDate;
</script>
</body>
</html>

0 comments on commit 29f99bf

Please sign in to comment.