-
Notifications
You must be signed in to change notification settings - Fork 0
/
deadlines2.html
49 lines (44 loc) · 1.54 KB
/
deadlines2.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
---
title: Deadlines Software Engineering, Security, Programming Languages and Special Issues
permalink: /deadlines2/
---
{% for file in site.data.deadlines %}
{% if file.first contains '_deadlines' %}
{% for conf in file[1] %}
<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 %}
{% endif %}
{% endfor %}