-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.08 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boston Theory Events</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Boston Theory Events</h1>
<p>Theory of computation seminars and colloquia in the Boston area</p>
<p class="maintainer">Maintained by <a href="https://sites.google.com/view/tedpyne/">Edward Pyne</a></p>
</header>
<main>
<section id="upcoming">
<h2>Upcoming Events</h2>
<div id="upcoming-events" class="event-list"></div>
</section>
<section id="recent">
<h2>Recent Events</h2>
<div id="recent-events" class="event-list"></div>
</section>
</main>
<footer>
<p>Sources: MIT TOC, Harvard Theory, Northeastern, BU, Charles River Crypto Day</p>
<p>Missing an event? <a href="https://github.com/Ted4P/BostonTheoryEvents/issues">Submit it here</a></p>
</footer>
<script src="script.js"></script>
</body>
</html>