-
Notifications
You must be signed in to change notification settings - Fork 2
/
conf-list.html
54 lines (53 loc) · 2.27 KB
/
conf-list.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
---
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.description }}">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="{{ "/static/css/deadlines.css" | prepend:site.baseurl }}" media="screen,projection">
<link rel="shortcut icon" href="{{ "/static/img/favicon.png" | prepend:site.baseurl }}">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<div class="top-strip"></div>
<div class="container">
<div class="page-header">
<div class="row">
<div class="col-xs-12 col-sm-8">
<h1>Deadlines Overview<br>
</h1>
</div>
<div class="col-xs-12">
<p>An overview of all (past and upcoming) conference deadlines by month.<br>
Useful to plan the next submissions (even if the CFP is not out yet), or to remember when to update the tracker.
<p>
<p>Latest update: {{ site.time | date: "%-d %B %Y" }}
<hr>
<div class="conf-monthlist">
{% for month in site.data.months %}
<div id="{{ month }}">
<h2>{{ month }}</h2>
<span class="month-confs"></span>
</div>
{% endfor %}
</div>
<hr>
<footer>
<div class="row">
<div class="col-xs-12 col-sm-6">
Maintained by Giacomo Giuliari.
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.countdown/2.2.0/jquery.countdown.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.13/moment-timezone-with-data.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/store.js/1.3.20/store.min.js"></script>
<script src="{{ site.baseurl}}/static/js/conflist.js" async></script>
</body>
</html>