-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
122 lines (117 loc) · 4.48 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
120
121
122
---
---
<!DOCTYPE html>
<html>
<!-- prettier-ignore -->
<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" />
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.description }}" />
<link rel="stylesheet" type="text/css" href="{{ "/static/css/bootstrap-v3.4.1.min.css" | prepend:site.baseurl }}" />
<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="{{ "/static/js/jquery-v3.6.0.min.js" | prepend:site.baseurl }}"></script>
<script src="{{ "/static/js/jquery.countdown-v2.2.0.min.js" | prepend:site.baseurl }}"></script>
<!-- TODO: Remove moment (https://dockyard.com/blog/2020/02/14/you-probably-don-t-need-moment-js-anymore) -->
<script src="{{ "/static/js/moment-v2.29.4.min.js" | prepend:site.baseurl }}"></script>
<script src="{{ "/static/js/moment-timezone-with-data-v0.5.37-2022c.min.js" | prepend:site.baseurl }}"></script>
<script src="{{ "/static/js/store-v2.0.12.min.js" | prepend:site.baseurl }}"></script>
<script src="{{ site.baseurl}}/main.js" async></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>{{ site.title }}</h1>
</div>
<div class="col-xs-12">
{{ site.description }}
<p>
To add/update a conference,
<a
target="_blank"
href="https://github.com/{{ site.github_username }}/{{ site.github_repo }}"
>send in a pull request</a
>.
</p>
<p>Last update: {{ site.time | date: "%-d %B %Y" }}</p>
<p class="small text-secondary">iCalendar feeds:
<a target="_blank" href="/sse-deadlines.ics">All Deadlines</a>, or only
{%- for type in site.data.types %}
<a target="_blank" href="/ics/{{ type.tag }}.ics">{{ type.name }}</a>
{%- unless forloop.last %} / {% endunless -%}
{%- endfor -%}
.
</p>
</div>
</div>
<hr />
<div class="row">
<div class="col-xs-12">
<form class="form-inline">
<div class="form-group">
{% for type in site.data.types %}
<div class="checkbox">
<label>
<input
type="checkbox"
id="{{ type.tag }}-checkbox"
/>
{{ type.name }}
</label>
</div>
{% endfor %}
</div>
</form>
</div>
</div>
</div>
<div class="conf-container">
{% for conf in site.data.conferences %}
<div
id="{{ conf.name | append: conf.year | slugify }}"
class="conf {% for tag in conf.tags %} {{tag}} {% endfor %}"
>
<div class="row">
<div class="col-xs-12 col-sm-7">
<h2><a href="{{conf.link}}">{{conf.name}} {{conf.year}}</a></h2>
<div class="meta">
{{ conf.description }}
<br />
{{conf.date | replace: '-', '–'}}
{% if conf.place %} // {{conf.place}}{% endif %}
{% if conf.rank %} //
Rank
<a
href="http://portal.core.edu.au/conf-ranks/?by=all&source=all&sort=atitle&page=1&search={{ conf.name | url_encode }}"
>{{conf.rank}}</a>
{% endif %}
<br />
</div>
</div>
<div class="col-xs-12 col-sm-5">
<span class="timer"></span>
<div class="deadline">
<div>
Deadline:
<span class="deadline-time"></span>
<div class="meta">{{ conf.comment }}</div>
</div>
</div>
</div>
</div>
<hr />
</div>
{% endfor %}
</div>
<footer>
Maintained by
<a href="https://www.cs.cit.tum.de/sse/leinen/">Fabian Leinen</a>.
</footer>
</div>
</body>
</html>