2013-06-25 20:19:49 +00:00
|
|
|
<div class="navigation-wrapper">
|
2014-01-15 19:17:10 +00:00
|
|
|
<nav role="navigation" id="site-nav" class="animated drop">
|
2013-06-25 20:19:49 +00:00
|
|
|
<ul>
|
2014-08-08 19:52:28 +00:00
|
|
|
{% for link in site.data.navigation %}
|
|
|
|
{% if link.url contains 'http' %}
|
|
|
|
{% assign domain = '' %}
|
|
|
|
{% else %}
|
|
|
|
{% assign domain = site.url %}
|
|
|
|
{% endif %}
|
|
|
|
<li><a href="{{ domain }}{{ link.url }}" {% if link.url contains 'http' %}target="_blank"{% endif %}>{{ link.title }}</a></li>
|
|
|
|
{% endfor %}
|
2014-09-05 20:24:27 +00:00
|
|
|
{% if site.search %}<li class="dosearch"><span><i class="fa fa-search"></i> Search</span></li>{% endif %}
|
2013-06-25 20:19:49 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div><!-- /.navigation-wrapper -->
|
|
|
|
|
2013-09-11 18:49:04 +00:00
|
|
|
{% include browser-upgrade.html %}
|
|
|
|
|
2014-08-08 19:52:28 +00:00
|
|
|
{% if site.search %}{% include site-search.html %}{% endif %}
|
2013-09-11 16:12:08 +00:00
|
|
|
|
2014-01-15 19:17:10 +00:00
|
|
|
{% if page.image.feature %}<header class="masthead">
|
2014-01-20 23:02:43 +00:00
|
|
|
{% if site.logo != null %}
|
|
|
|
<div class="wrap">
|
2014-08-08 19:52:28 +00:00
|
|
|
<a href="{{ site.url }}" class="site-logo" rel="home" title="{{ site.title }}"><img src="{{ site.url }}/images/{{ site.logo }}" width="200" height="200" alt="{{ site.title }} logo" class="animated bounceInDown"></a>
|
2014-01-20 23:02:43 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2013-07-30 13:53:12 +00:00
|
|
|
</header><!-- /.masthead -->
|
2014-01-15 19:17:10 +00:00
|
|
|
{% else %}<header class="masthead">
|
2013-07-30 13:53:12 +00:00
|
|
|
<div class="wrap">
|
2014-01-20 23:02:43 +00:00
|
|
|
{% if site.logo != null %}
|
2014-08-08 19:52:28 +00:00
|
|
|
<a href="{{ site.url }}" class="site-logo" rel="home" title="{{ site.title }}"><img src="{{ site.url }}/images/{{ site.logo }}" width="200" height="200" alt="{{ site.title }} logo" class="animated fadeInUp"></a>
|
2014-01-20 23:02:43 +00:00
|
|
|
{% endif %}
|
2014-09-05 20:24:27 +00:00
|
|
|
<h1 class="site-title animated fadeIn"><a href="{{ site.url }}">{{ site.title }}</a></h1>
|
2013-07-30 13:53:12 +00:00
|
|
|
<h2 class="site-description animated fadeIn" itemprop="description">{{ site.description }}</h2>
|
2013-06-25 20:19:49 +00:00
|
|
|
</div>
|
2013-08-07 16:04:44 +00:00
|
|
|
</header><!-- /.masthead -->{% endif %}
|
2014-09-05 20:24:27 +00:00
|
|
|
|
|
|
|
<div class="js-menu-screen menu-screen"></div>
|