-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
220 lines (207 loc) · 11.1 KB
/
index.html
File metadata and controls
220 lines (207 loc) · 11.1 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
---
---
<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 }}">
<link rel="stylesheet" type="text/css" href="{{ "/static/css/styles.css" | prepend:site.baseurl }}" media="screen,projection">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Global site tag (gtag.js) - Google Analytics
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZY66C08954"></script>-->
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZY66C08954');
</script>
</head>
<body>
<div class="top-strip"></div>
<div class="container">
<div class="page-header">
<div class="row">
<div class="header-box">
<h1>
<i class="fas fa-hourglass-half spinning-icon"></i> {{ site.title }}<br>
<a href="https://twitter.com/share" class="twitter-share-button" data-text="{{ site.description }}{% if site.twitter_hashtag %} #{{ site.twitter_hashtag }}{% endif %}" data-show-count="false">Tweet</a>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<iframe src="https://ghbtns.com/github-btn.html?user={{ site.github_username }}&repo={{ site.github_repo }}&type=star&count=true" frameborder="0" scrolling="0" width="170px" height="20px"></iframe>
</h1>
<p>{{ site.description }}</p>
<p>To add/update a conference, <a target="_blank" href="//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>
</div>
</div>
<hr>
<div class="row">
<div class="col-xs-12">
<span class="tagtitle"><b>Filter by tags:</b> Select one or more to refine the list, or leave all unchecked to show every deadline.</span>
</div>
<div class="col-xs-12">
<form class="form-inline">
<div class="form-group">
<span class="mytitle">Research Domain: </span>
{% for type in site.data.filters.filter1 %}
<div class="checkbox">
<label>
<input type="checkbox" id="{{ type.tag }}-checkbox" class="filter-checkbox" data-filter-group="filter1"> {{ type.name }}
</label>
</div>
{% endfor %}
</div>
</form>
</div>
<div class="col-xs-12">
<form class="form-inline">
<div class="form-group">
<span class="mytitle">Publication Type: </span>
{% for type in site.data.filters.filter2 %}
<div class="checkbox">
<label>
<input type="checkbox" id="{{ type.tag }}-checkbox" class="filter-checkbox" data-filter-group="filter2"> {{ type.name }}
</label>
</div>
{% endfor %}
</div>
</form>
</div>
<div class="col-xs-12">
<form class="form-inline">
<div class="form-group">
<span class="mytitle"><a href="https://portal.core.edu.au/conf-ranks/" target="_blank">CORE</a> Ranking: </span>
{% for type in site.data.filters.filter3 %}
<div class="checkbox">
<label>
<input type="checkbox" id="{{ type.tag }}-checkbox" class="filter-checkbox" data-filter-group="filter3"> {{ type.name }}
</label>
</div>
{% endfor %}
</div>
</form>
</div>
<div class="col-xs-12">
<button id="clear-filters" class="btn btn-primary">Clear Filters</button>
<span class="sort-label"><b>Sort by:</b></span>
<button class="btn btn-default btn-sm sort-btn active-sort" data-sort="deadline">Deadline</button>
<button class="btn btn-default btn-sm sort-btn" data-sort="event-date">Event Date</button>
</div>
<div class="col-xs-12 search-row">
<div class="input-group search-bar">
<span class="input-group-addon"><i class="fas fa-search"></i></span>
<input type="text" id="search-input" class="form-control" placeholder="Search by name, venue, location…" autocomplete="off">
<span class="input-group-btn">
<button id="clear-search" class="btn btn-default" type="button" title="Clear search"><i class="fas fa-times"></i></button>
</span>
</div>
</div>
</div>
</div>
<div class="conf-container">
{% for conf in site.data.conferences %}
{% assign num_deadlines = conf.deadline.size %}
{% assign range_end = conf.deadline.size | minus: 1 %}
{% for i in (0..range_end) %}
{% assign year = conf.year %}
{% assign prevyear = conf.year | minus: 1 %}
{% assign deadline = conf.deadline[i] | replace: '%y', year | replace: '%Y', prevyear %}
<!--{% assign conf_id = conf.name | append: conf.year | append: '-' | append: i | slugify %}-->
{% assign conf_type = conf.tags | join: "-" | slugify %}
{% assign conf_id = conf.name | append: conf.year | append: '-' | append: conf_type | append: '-' | append: i | slugify %}
<div id="{{ conf_id }}" class="conf {% for tag in conf.tags %} {{tag}} {% endfor %}" data-conf-date="{{ conf.date }}" data-conf-year="{{ conf.year }}">
<div class="row">
<div class="col-xs-12 col-sm-6">
<a class="conf-title" href="{{conf.link}}" target="_blank">{{conf.name}} {{conf.year}}</a>
<div class="meta">
{{ conf.description }}<br>
{% if conf.date %}
<span class="conf-date">
<i class="fas fa-calendar-day"></i> {{conf.date | replace: '-', '–'}}
</span>
{% endif %}
{% if conf.place %}
<span class="conf-place">
<i class="fas fa-map-marker-alt"></i>
<a class="conf-date" href="http://maps.google.com/?q={{conf.place}}" target="_blank">{{conf.place}}</a>
</span>
{% endif %}
<br>
{% for filter_item in site.data.filters.filter3 %}
{% if conf.tags contains filter_item.tag %}
<span class="corerank">
<a href="http://portal.core.edu.au/conf-ranks/" target="_blank">CORE</a>: {{ filter_item.name }}
</span>
<br>
{% endif %}
{% endfor %}
</div>
</div>
<div class="col-xs-12 col-sm-6">
<span class="timer"></span>
<div class="deadline">
<div>
{% if num_deadlines >=2 %}
Deadline ({{ i | plus: 1 }} / {{ num_deadlines }}):
{% else %}
Deadline:
{% endif %}
<span class="deadline-time">
{{ deadline }}
</span>
<div class="meta">
{% if conf.abdeadline %}
<span class="abstractdeadline">Abstract Deadline: {{ conf.abdeadline }}</span> <br>
{% endif %}
{% if conf.rebut %}
<span class="conf-rebut">
Rebuttal: {{ conf.rebut }}
</span><br>
{% endif %}
<span class="conf-comment">
{{ conf.comment }}
</span>
</div>
</div>
</div>
</div>
</div>
<hr>
</div>
{% endfor %}
{% endfor %}
</div>
<!-- Past Events Section -->
<div class="row">
<div class="col-xs-12">
<div id="past-events-section">
<div class="past-deadlines">
<span>Past Deadlines</span>
<span class="glyphicon glyphicon-chevron-down"></span>
</div>
<div id="past-events-list" style="display: none;">
<!-- Past events will be dynamically inserted here -->
</div>
</div>
</div>
</div>
<footer>
Maintained by <a class="footer-text" href="https://ajithsuresh.github.io/">Ajith Suresh</a>. Based on <a class="footer-text" href="https://sec-deadlines.github.io">sec-deadlines</a>.
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.countdown/2.2.0/jquery.countdown.min.js" integrity="sha512-lteuRD+aUENrZPTXWFRPTBcDDxIGWe5uu0apPEn+3ZKYDwDaEErIK9rvR0QzUGmUQ55KFE2RqGTVoZsKctGMVw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" integrity="sha512-qTXRIMyZIFb8iQcfjXWCO8+M5Tbc38Qi5WzdPOYZHIlZpzBHG3L3by84BBBOiRGiEb7KKtAOAs5qYdUiZiQNNQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.34/moment-timezone-with-data-10-year-range.min.js" integrity="sha512-d11VXfxQMn+sZuIgzHITdIuInr4cVRGV/uLiSI643WH/J+p4gPFYSHXRMR2v+w4Rn2TSyzJjsZjc0M7+Qd+UXw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/store.js/2.0.12/store.legacy.min.js" integrity="sha512-3yZTInL4yLU1ajnca35KTk6YE4RPHJU2y+jbhHAykE9OzMHpc2BIJghNsbkBNacIJWLLUmUkLEGPDDWrFY2zzw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="{{ site.baseurl}}/static/js/main.js" async></script>
</body>
</html>