Skip to content

Commit

Permalink
Update calendar.html
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrieleMonte authored Feb 1, 2024
1 parent b6275a7 commit 9d3b885
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions calendar.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,5 +136,15 @@ <h2 onclick="toggleContent('fall2023')">Fall 2023 Seminars</h2>
<p>Supported by the Weinberg Institute for Theoretical Physics, Department of Physics, University of Texas.</p>
<p>&copy; 2023 Physics Concerto Seminar Series</p>
</footer>
<script>
function toggleContent(id) {
var content = document.getElementById(id);
if (content.style.display === "none") {
content.style.display = "block";
} else {
content.style.display = "none";
}
}
</script>
</body>
</html>

0 comments on commit 9d3b885

Please sign in to comment.