summaryrefslogtreecommitdiff
path: root/_includes/navigation.html
blob: 8ed6a73246cb1bc847858d80b197b0302c0218d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="navigation-wrapper">
	<nav role="navigation" id="site-nav" class="" itemscope itemtype="http://schema.org/SiteNavigationElement">
	    <ul>
	        {% for link in site.links %}
			<li><a href="{% if link.external %}{{ link.url }}{% else %}{{ site.url }}{{ link.url }}{% endif %}" {% if link.external %}target="_blank"{% endif %}>{{ link.title }}</a></li>
	        {% endfor %}
	        <li><a href="{{ site.url }}/index.atom" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a>
	    </ul>
	</nav>
</div><!-- /.navigation-wrapper -->

<header class="masthead">
	<div class="wrap">
		<!-- <a href="{{ site.url }}" class="site-logo" rel="home" title="{{ site.title }}"><img src="{{ site.url }}/images/{{ site.logo }}" width="200" height="200" class="animated fadeInUp"></a> -->
		<h1 class="site-title"><a href="{{ site.url }}">{{ site.title }}</a></h1>
		<h2 class="site-description">{{ site.description }}</h2>
	</div>
</header><!-- /.masthead -->