forked from ConciseCSS/concise.css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
19 lines (18 loc) · 832 Bytes
/
header.html
File metadata and controls
19 lines (18 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="container center">
<div class="row no-margin top-nav-container">
<div class="column-6 logo">
<a href="{{ site.baseurl }}/">
<img src="{{ site.baseurl }}/images/logo.svg" alt="Concise Logo" />
</a>
</div><!-- .column-6 -->
<div class="column-18">
<nav class="top-nav bg-white nav-responsive">
<ul class="text-right list-inline text-uppercase">
{% for page in site.pages %}
{% if page.title %}<li><a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></li>{% endif %}
{% endfor %}
</ul>
</nav><!-- .top-nav -->
</div><!-- .column-18 -->
</div><!-- .row -->
</div><!-- .container -->