-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.html
executable file
·118 lines (106 loc) · 5.91 KB
/
program.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
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en-gb" class='uk-notouch'>
<head>
<base href="/">
<title>CS Research Symposium - Spring 2022</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="favicon.ico" href="favicon.ico?v=5" />
<!-- CSS FILES -->
<!-- <link rel="stylesheet" href="css/uikit.min.css" /> -->
<link rel="stylesheet" href="css/custom.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<!-- JS FILES -->
<script src="js/uikit.min.js"></script>
<script src="js/uikit-icons.min.js"></script>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/common.js"></script>
</head>
<body class="uk-background-muted">
<div id="nav-placeholder">
</div>
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
window.onload = function() {
updateNavBar("program");
}
</script>
<main uk-height-viewport="expand: true">
<section class="uk-section uk-section-muted">
<div class="uk-container">
<div class="uk-grid uk-grid-small uk-child-width-1-1" uk-grid>
<div>
<div class="uk-card uk-card-default">
<div class="uk-card-header">
<div class="uk-width-expand">
<h3 class="uk-card-title uk-margin-remove-bottom uk-text-bold">
<span uk-icon="icon: calendar; ratio: 1.2"></span>
When
</h3>
</div>
</div>
<div class="uk-card-body">
<p class="uk-text-justify"><b>Friday, April 1, 2022</b></p>
<p class="uk-text-justify">Time: 12:00PM - 5:30PM
</div>
</div>
</div>
<div>
<div class="uk-card uk-card-default">
<div class="uk-card-header">
<div class="uk-width-expand">
<h3 class="uk-card-title uk-margin-remove-bottom uk-text-bold">
<span uk-icon="icon: location; ratio: 1.2"></span>
Where
</h3>
<p class="uk-text-meta uk-margin-small-top uk-margin-small-bottom uk-text-emphasis">
Hybrid: in-person & virtual
</p>
</div>
</div>
<div class="uk-card-body">
The event will be held both in-person and virtually over Zoom. We will have snacks and coffee at the in-person venue (CS1240).
<ul>
<li>In-person: 1240 Computer Sciences (<a href="https://goo.gl/maps/M5JCA9ijtLqGaAeDA" target="_blank">find on Google Maps</a>) </li>
<li>Zoom: <a href="https://uwmadison.zoom.us/j/92449837615?pwd=TFdNMFF3ZFI2MGVEejNtV0JGNVFDZz09">https://uwmadison.zoom.us/j/92449837615?pwd=TFdNMFF3ZFI2MGVEejNtV0JGNVFDZz09</a></li>
</ul>
</div>
</div>
</div>
<div>
<div class="uk-card uk-card-default">
<div class="uk-card-header">
<div class="uk-width-expand">
<h3 class="uk-card-title uk-margin-remove-bottom uk-text-bold">
<span uk-icon="icon: table; ratio: 1.2"></span>
Event Schedule (finalized)
</h3>
<p class="uk-text-meta uk-margin-small-top uk-margin-small-bottom uk-text-emphasis">
<!-- Alternative formats: <a href="https://docs.google.com/spreadsheets/d/1a8Sp2GasjQqyspXNq0E34wF0ssBVWN8uBfzoJn2O5Ww/edit?usp=sharing" target="_blank" ><span style="color: blue;">Google Sheets</span></a>, <a href="data/timetable.jpg" target="_blank" ><span style="color: blue;">image</span></a>, <a href="data/timetable.pdf" target="_blank" ><span style="color: blue;">pdf</span></a> -->
Alternative formats: <a href="https://docs.google.com/spreadsheets/d/1a8Sp2GasjQqyspXNq0E34wF0ssBVWN8uBfzoJn2O5Ww/edit?usp=sharing" target="_blank" ><span style="color: blue;">Google Sheets</span></a>, <a href="data/timetable.pdf" target="_blank" ><span style="color: blue;">pdf</span></a>
</p>
</div>
</div>
<div class="uk-card-body">
<iframe src="data/timetable.pdf" width="100%" height="800px">
</iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<script>
$(function(){
$("#footer-placeholder").load("footer.html");
});
</script>
<footer id="footer-placeholder">
</footer>
</body>
</html>