Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrieleMonte authored Feb 1, 2024
1 parent d64a8d5 commit b6275a7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,15 @@ <h2>Overview</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 b6275a7

Please sign in to comment.