-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·119 lines (107 loc) · 5.83 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en-gb" class='uk-notouch'>
<head>
<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="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("home");
}
</script>
<main uk-height-viewport="expand: true">
<div class="uk-section uk-background-muted">
<div class="uk-container">
<!--Left Tile -->
<div class="uk-card uk-card-default uk-card-hover uk-grid-collapse uk-child-width-1-2@s uk-margin"
uk-grid uk-scrollspy="cls:uk-animation-fade">
<div class="uk-card-media-left uk-cover-container">
<img src="/img/campus_main_aerial.png" alt="" uk-cover>
<canvas width="300" height="300"></canvas>
</div>
<div>
<div class="uk-card-body">
<h3 class="uk-card-title">Welcome to CS Research Symposium!</h3>
<p class="uk-text-justify">
<b>When: Friday, April 1 2022 at 12:00pm - 5:30pm</b>
</p>
<p class="uk-text-justify">
<b>Where: 1240 Computer Sciences (in person) and Zoom (virtual)</b>
</p>
<p>
<b>Zoom link:</b> <a href="https://uwmadison.zoom.us/j/92449837615?pwd=TFdNMFF3ZFI2MGVEejNtV0JGNVFDZz09">https://uwmadison.zoom.us/j/92449837615?pwd=TFdNMFF3ZFI2MGVEejNtV0JGNVFDZz09</a>
</p>
<p>
<b>VOTE for your favorite talks: </b> <a href="https://forms.gle/myoxuyVQJU5fZimo9">***** Google form *****</a>
</p>
<p class="uk-text-justify">
<a href="https://sacm.cs.wisc.edu/" target="_blank">SACM</a> and <a href="https://wacm.cs.wisc.edu/" target="_blank">WACM</a> are hosting a research symposium, both <u><b>virtual</b> and <b>in-person</b></u>, to facilitate connections and conversations between members of the UW-Madison Computer Sciences community.
Graduate and undergraduate students involved in research will present short talks about their work.
There will also be keynote talks by the faculty members. Presenters will have the chance to win exciting <b>prizes</b>!
</p>
<p class="uk-text-justify">
Topics include machine learning, security, operating systems, theory, and quantum computing. <a href="https://csresearchsymposium.github.io/program.html">See our Program page for a full list of talks.</a>
</p>
</div>
</div>
</div>
<!-- Right Tile -->
<div class="uk-card uk-card-default uk-card-hover uk-grid-collapse uk-child-width-1-2@s uk-margin"
uk-grid uk-scrollspy="cls:uk-animation-fade">
<div class="uk-flex-last@s uk-card-media-right uk-cover-container">
<img src="/data/timetable.jpg" alt="" uk-cover>
<canvas width="300" height="300"></canvas>
</div>
<div>
<div class="uk-card-body">
<h3 class="uk-card-title">Click <a href="/program.html">here</a> for the full program!</h3>
</div>
</div>
</div>
<!-- Right Tile
<div class="uk-card uk-card-default uk-card-hover uk-grid-collapse uk-child-width-1-2@s uk-margin"
uk-grid uk-scrollspy="cls:uk-animation-fade">
<div class="uk-flex-last@s uk-card-media-right uk-cover-container">
<img src="/img/register_qr.png" alt="" uk-cover>
<canvas width="300" height="300"></canvas>
</div>
<div>
<div class="uk-card-body">
<h3 class="uk-card-title">Call for Papers!</h3>
<p class="uk-text-justify">
If you are interested in presenting, please sign up by Friday, February 21 by clicking <a href="/submission.html">here</a> or scanning the QR code!
</p>
</div>
</div>
</div>
-->
</div>
</div>
</main>
<script>
$(function(){
$("#footer-placeholder").load("footer.html");
});
</script>
<footer id="footer-placeholder">
</footer>
</body>
</html>