brouilleursdeblanc/_includes/navigation.html

23 lines
1.4 KiB
HTML
Raw Normal View History

2013-06-25 20:19:49 +00:00
<div class="navigation-wrapper">
2013-07-30 13:53:12 +00:00
<nav role="navigation" id="site-nav" class="animated drop" itemscope itemtype="http://schema.org/SiteNavigationElement">
2013-06-25 20:19:49 +00:00
<ul>
{% for link in site.links %}
2013-07-30 13:53:12 +00:00
<li><a href="{{ site.url }}{{ link.url }}">{{ link.title }}</a></li>
2013-06-25 20:19:49 +00:00
{% endfor %}
2013-08-05 02:59:08 +00:00
<li><a href="{{ site.url }}/feed.xml" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a>
2013-06-25 20:19:49 +00:00
</ul>
</nav>
</div><!-- /.navigation-wrapper -->
2013-07-30 13:53:12 +00:00
{% if page.image.feature %}<header class="masthead" itemscope itemtype="http://schema.org/Organization">
2013-06-25 20:19:49 +00:00
<div class="wrap">
2013-07-30 13:53:12 +00:00
<a href="{{ site.url }}" class="site-logo" rel="home" title="{{ site.title }}" itemprop="url"><img src="{{ site.url }}/images/{{ site.logo }}" width="200" height="200" alt="{{ site.title }} logo" class="animated bounceInDown" itemprop="logo"></a>
</div>
</header><!-- /.masthead -->
{% else %}<header class="masthead" itemscope itemtype="http://schema.org/Organization">
<div class="wrap">
<a href="{{ site.url }}" class="site-logo" rel="home" title="{{ site.title }}" itemprop="url"><img src="{{ site.url }}/images/{{ site.logo }}" width="200" height="200" alt="{{ site.title }} logo" class="animated fadeInUp" itemprop="logo"></a>
2013-06-25 20:19:49 +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-07-30 13:53:12 +00:00
</header><!-- /.masthead -->{% endif %}