-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdefault-header.html
More file actions
65 lines (58 loc) · 2.17 KB
/
default-header.html
File metadata and controls
65 lines (58 loc) · 2.17 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
<nav class="navbar is-fixed-top" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img src="/images/logo.png" alt="Street Science Community">
</a>
<a
role="button"
class="navbar-burger burger"
aria-label="menu"
aria-expanded="false"
data-target="top-menu"
>
<span aria-hidden="true"></span> <span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="top-menu" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" href="/about"> About us </a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link"> Projects </a>
<div class="navbar-dropdown">
{% for page in site.projects %}
<a class="navbar-item" href="{{ page.url }}"> {{ page.title }} </a>
{% endfor %}
</div>
</div>
<a class="navbar-item" href="/events"> Events </a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">Protocols</a>
<div class="navbar-dropdown">
{% for page in site.protocols %}
<a class="navbar-item" href="{{ page.url }}"> {{ page.title }} </a>
{% endfor %}
</div>
</div>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">Materials</a>
<div class="navbar-dropdown">
<p class="navbar-item navbar-separator">Slides</p>
{% for page in site.materials %}
{% if page.type == 'slides' %}
<a class="navbar-item" href="{{ page.url }}"> {{ page.title }} </a>
{% endif %}
{% endfor %}
<p class="navbar-item navbar-separator">Handbooks</p>
{% for page in site.materials %}
{% if page.type == 'handbook' %}
<a class="navbar-item" href="{{ page.url }}"> {{ page.title }} </a>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</nav>