-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathheader.html
21 lines (19 loc) · 951 Bytes
/
header.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<header class="text-center py-3 border-bottom has-divider">
<!-- center -->
<img class="logo align-middle" alt="Logo" src="{{ site.baseurl }}/static/icon_foreground.png"/>
<a class="h3 mx-2 align-middle text-decoration-none" href="{{ site.baseurl }}/home">{{ site.title }}</a>
<!-- left -->
<div class="left align-middle">
<img class="drawer-toggle p-2 mx-2 d-md-none"
alt="Menu toggle"
src="{{ site.baseurl }}/icons/menu.svg"
onclick="document.getElementById('drawer').classList.toggle('drawer-closed');"/>
</div>
<!-- right -->
<div class="right align-middle">
<span class="version d-none d-sm-inline-block">latest: v{{ site.github_version }}</span>
<a class="p-2 mx-2" href="https://github.com/{{ site.author.github }}/{{ site.github_repo }}">
<img alt="GitHub" src="{{ site.baseurl }}/icons/github.svg">
</a>
</div>
</header>