forked from JesperDramsch/python-deadlines
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmasthead.html
More file actions
54 lines (54 loc) · 1.75 KB
/
Copy pathmasthead.html
File metadata and controls
54 lines (54 loc) · 1.75 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
<div class="page-header">
<div class="container">
<div class="row align-items-end">
<div class="col-md-8">
{% include_cached breadcrumbs.html url=include.url %}
<h1 class="display-4">{{ include.title}}</h1>
<span class="lead"> {{ include.hook}} </span>
<span class="text-muted"> {{ include.description}} </span>
</div>
<div class="col-md-4">
<div class="d-flex justify-content-center">
<a href="{{ site.baseurl }}/{{ site.github_repo }}.ics" class="btn btn-outline-primary mx-1">
<i class="fa fa-calendar-plus-o" aria-hidden="true"></i> {% t buttons.ical %}
</a>
<a
href="https://calendar.google.com/calendar/r?cid={{ site.url | replace: 'https', 'webcal' }}/{{ site.github_repo }}.ics"
class="btn btn-outline-danger mx-1"
rel="me"
>
<i class="fa-brands fa-google fa-sm" aria-hidden="true"></i> {% t buttons.google %}
</a>
<a
href="https://github.com/{{ site.github_username }}/{{ site.github_repo }}/"
class="btn btn-outline-dark mx-1"
>
<i class="fa-brands fa-github fa-xs" aria-hidden="true"></i> {% t buttons.github %}
</a>
</div>
<hr class="my-3" />
<form>
<div class="form-group">
<label for="subject-select" class="mb-2 align-center control-label">
{% t global.sub_filter %}
</label>
<br />
<select
id="subject-select"
name="subject-select"
multiple="multiple"
class="form-control"
style="display: none"
>
{% for type in site.data.types %}
<option value="{{type.sub}}" id="{{type.sub}}-checkbox">
{% t 'subs.{{type.sub | strip}}' %} ({{type.sub}})
</option>
{% endfor %}
</select>
</div>
</form>
</div>
</div>
</div>
</div>