comparison _includes/header.html @ 0:7abe02bf29ec

initial commit
author Alex Krolick <whokilledtheelectricmonk@gmail.com>
date Sat, 07 Nov 2015 18:04:42 -0800
parents
children e210b708b330
comparison
equal deleted inserted replaced
-1:000000000000 0:7abe02bf29ec
1 <div class="fixed contain-to-grid">
2 <nav class="top-bar" data-topbar role="navigation">
3 <ul class="title-area">
4 <li class="name">
5 <h1>
6 <a href="{{ site.baseurl }}/" >
7 <img src="{{ "/img/logo.png" | prepend: site.baseurl }}" style="width: 32px; height: auto"/>
8 {{ site.title }}
9 </a>
10 </h1>
11 </li>
12 <!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
13 <li class="toggle-topbar menu-icon"><a href="#"></a></li>
14 </ul>
15
16 <section class="top-bar-section">
17 <!-- Right Nav Section -->
18 <ul class="right">
19 {% for page in site.pages %}
20 {% if page.title %}
21 <li>
22 <a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
23 </li>
24 {% endif %}
25 {% endfor %}
26 </ul>
27 </section>
28 </nav>
29 </div>