-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
105 lines (74 loc) · 4.17 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<title>Data 88E</title>
<!-- Latest compiled and minified Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="../assets/javascript/underscore-min.js"></script>
<script src="../assets/javascript/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<link rel="stylesheet" href="../assets/stylesheets/main.css" />
<link rel="icon" href="../assets/images/favicon.ico" />
<!-- MathJax script -->
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<!-- Calendar Script -->
<script src="../assets/javascript/calendar.js"></script>
</head>
<body id="index" class="home">
<script type="text/javascript" src="navbar.js"></script>
<!-- <div style="text-align: center; " id="clock"> <span style="font-size: 18.0pt; background-color: #ff0000" > All the information on this site is provisional and subject to change until the first day of class.</span> </div> -->
<div class="container">
<h1 id="course-name">Data 88E: Economic Models <span class="quiet font-weight-light">Spring 2022</span></h1>
<p>
<strong>Instructor</strong>: Eric Van Dusen<br>
<strong>Course Staff:</strong> Matthew Yep, Rohan Jha, Ergun Acikoz, Sreeja Apparaju, Vaidehi Bulusu <br>
<strong>Connector Assistants:</strong> Bennett Somerville, Cole Ginter, Hector Juarez-Vargas, Miranda Li, Isabella Siu, Peter Grinde-Hollevik, Yiyang Chen <br>
<strong>Lecture</strong>: Monday's 2-4pm at Room 105 in <a href="https://www.berkeley.edu/map?northgatehall" target="_blank"> North Gate Hall </a>. Lecture recordings can be watched <a href="https://kaltura.berkeley.edu/channel/Data%2B88E%2B-%2BEconomic%2BModels%2B-%2BSpring%2B22/245403942" target="_blank"> here</a>.
</p>
<h2>Calendar</h2>
<div class="calendar" id="calendar-target"></div>
<p style="text-align: right; padding-top: 5px;">Note: Topics and dates are subject to change.</p>
</div>
<script>
$(document).ready(function() {
// Announcements
var announcementIndex = 0;
function setAnnouncements(offset) {
var newIndex = announcementIndex + offset;
var announcementNumber = $('.announcement').length;
if (newIndex < 0 || newIndex >= announcementNumber) {
return;
}
$('#announcement-' + announcementIndex).hide(0, function() {
$('#announcement-' + newIndex).show(0);
});
announcementIndex = newIndex;
if (announcementIndex >= announcementNumber - 1) {
$('#announcement-' + announcementIndex + ' .announcement-btn-older')
.addClass('disabled');
}
if (announcementIndex === 0) {
$('#announcement-' + announcementIndex + ' .announcement-btn-newer')
.addClass('disabled');
}
}
setAnnouncements(0);
$('.announcement-btn-newer > a').click(function() {
setAnnouncements(-1);
});
$('.announcement-btn-older > a').click(function() {
setAnnouncements(1);
});
});
</script>
<script>
// function below gets the calender JSON file; query params are added to ensure that the JSON
// file is never loaded from browser cache
var jqxhr = loadCalendar("./calendar.json?nocache=" + (new Date()).getTime());
</script>
</body>
</html>