-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
25 lines (25 loc) · 1.04 KB
/
header.html
File metadata and controls
25 lines (25 loc) · 1.04 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
<header class="header" itemscope itemtype="http://schema.org/SiteNavigationElement" aria-label="Main navigation">
<div class="container">
<div class="header__inner">
<a class="header__logo" href="{{ '/' | relative_url }}">
<div class="header__logo--container">
{% include logo.svg %}
</div>
</a>
<nav class="header__links">
<div class="container header__links-wrapper">
<a class="header__link" href="{{ 'http://blog.hacktons.cn' | relative_url }}" itemprop="url"><span itemprop="name">Blog</span></a>
<a class="header__link" href="{{ 'https://github.com/hacktons/hacktons.github.io' | relative_url }}" itemprop="url"><span itemprop="name">GitHub</span></a>
<!-- <a class="header__link" href="{{ '/contact' | relative_url }}" itemprop="url">
<span itemprop="name">Contact</span>
</a> -->
</div>
</nav>
<div class="header__toggle">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</header>