-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathheader.html
More file actions
25 lines (24 loc) · 923 Bytes
/
header.html
File metadata and controls
25 lines (24 loc) · 923 Bytes
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 -->
<header id="header"{% if page.layout == 'landing' %} class="alt"{% endif %}>
<h1><a href="{{ site.baseurl }}/index.html">{{ site.title }}</a></h1>
<nav id="nav">
<ul>
<li class="special">
<a href="#menu" class="menuToggle"><span>Menu</span></a>
<div id="menu">
<ul>
<li><a href="index.html">Home</a></li>
{% for my_page in site.pages %}
{% if my_page.title %}
<li>{{ my_page.categories | join ' ' }}<a href="{{ my_page.url | prepend: site.baseurl }}">{{ my_page.title }}</a></li>
{% endif %}
{% endfor %}
<li><a href="https://github.com/login">Log In</a></li>
<li><a href="{{ "/feed.xml" | prepend: site.baseurl }}"
class="icon fa-feed"> RSS Feed</a></li>
</ul>
</div>
</li>
</ul>
</nav>
</header>