-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdates.html
More file actions
104 lines (102 loc) · 3.88 KB
/
dates.html
File metadata and controls
104 lines (102 loc) · 3.88 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="manifest" href="./manifest.json">
<link rel="shortcut icon" href="./favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Forum|Jura:300,400,500,700|Montserrat|Roboto:100,300,300i,400,500,700,900" rel="stylesheet">
<title>Kernelcon</title>
<link href="./css/dates.css" rel="stylesheet">
<link href="./css/app.css" rel="stylesheet">
<link href="./css/mobile.css" rel="stylesheet">
<link href="./css/nav.css" rel="stylesheet">
</head>
<body>
<div class='main'>
<div class="nav">
<div class='container'>
<div class="top-nav">
<span class="nav-title">
<a href="./">
<img src='./img/kernelcon_w_trans.png' height="30" alt="logo"./>
</a>
</span>
<span class="nav-date">
April 5-6, 2019
</span>
</div>
<div class="nav-header">
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<input type="checkbox" id="nav-check">
<div class="nav-links">
<a href="./venue.html">venue</a>
<a href="./dates.html">dates</a>
<a href="./call-for-papers.html">call for papers</a>
<a href="./agenda.html">agenda</a>
<a href="./con.html">con</a>
<a href="./register.html">register</a>
<a href="./sponsors.html">sponsors</a>
<a href="./about.html">about</a>
</div>
</div>
</div>
<div class='container'>
<h1 class='heading-marg'>Important Dates</h1>
<div class='dates-list'>
<div class='date-box'>
<span class='dl-title'>Registration Open</span>
<div class='dl-description'>Sign up for the Con!</div>
<div class='dl-date'>OCT 1, 2018</div>
</div>
<div class='date-box'>
<span class='dl-title'>Call for Papers Announced</span>
<div class='dl-date'>OCT 12, 2018</div>
</div>
<div class='date-box'>
<span class='dl-title'>End of Early Registration</span>
<div class='dl-date'>DEC 31, 2018</div>
</div>
<div class='date-box'>
<span class='dl-title'>Call for Papers Close</span>
<div class='dl-date'>JAN 25, 2019</div>
</div>
<div class='date-box'>
<span class='dl-title'>Author Notifications Sent</span>
<div class='dl-date'>FEB 4, 2019</div>
</div>
<div class='date-box'>
<span class='dl-title'>Tentative Agenda Announced</span>
<div class='dl-date'>FEB 14, 2019</div>
</div>
<div class='date-box'>
<span class='dl-title'>Hotel Conference Rate Cutoff</span>
<div class='dl-date'>MAR 5, 2019</div>
</div>
<div class='date-box'>
<span class='dl-title'>Chillout Video Game Tournament Signups</span>
<div class='dl-description'>On site signups</div>
<div class='dl-date'>APR 5-6, 2019</div>
</div>
<div class='date-box'>
<span class='dl-title'>CTF Registration Available</span>
<div class='dl-description'>Teams of up to four, must be present to claim prizes.</div>
<div class='dl-date'>TBD</div>
</div>
<div class='date-box'>
<span class='dl-title'>WiFi Fox & Hound Registration Available</span>
<div class='dl-date'>TBD</div>
</div>
</div>
</div>
</div>
</body>
</html>