forked from sec-deadlines/sec-deadlines.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (92 loc) · 4.25 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
---
---
<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>
{{ 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" style="font-size:13px;">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>
</div>
<div class="col-xs-12">
{{ site.description }}
<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>Last update: {{ site.time | date: "%-d %B %Y" }}
</div>
</div>
<hr>
<div class="row">
<div class="col-xs-12">
<!-- <div class="well"> -->
<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" class=""> {{ type.name }}
</label>
</div>
{% endfor %}
</div>
</form>
<!-- </div> -->
</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-6">
<h2><a href="{{conf.link}}">{{conf.name}} {{conf.year}}</a></h2>
<div class="meta">
{{ conf.description }}<br>
{{conf.date | replace: '-', '–'}} {% if conf.place %}// <a href="http://maps.google.com/?q={{conf.place}}">{{conf.place}}</a>{% endif %}<br>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<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="//twitter.com/{{ site.twitter_username }}">{{ site.twitter_username }}</a>.
</footer>
</div>
<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/main.js" async></script>
{% if site.ga_id %}
{% include analytics.html %}
{% endif %}
</body>
</html>