mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
23 lines
No EOL
1.4 KiB
HTML
23 lines
No EOL
1.4 KiB
HTML
<div class="navigation-wrapper">
|
|
<nav role="navigation" id="site-nav" class="animated drop" itemscope itemtype="http://schema.org/SiteNavigationElement">
|
|
<ul>
|
|
{% for link in site.links %}
|
|
<li><a href="{{ site.url }}{{ link.url }}">{{ link.title }}</a></li>
|
|
{% endfor %}
|
|
<li><a href="{{ site.url }}/feed.xml" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a>
|
|
</ul>
|
|
</nav>
|
|
</div><!-- /.navigation-wrapper -->
|
|
|
|
{% if page.image.feature %}<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 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>
|
|
<h1 class="site-title animated fadeIn"><a href="{{ site.url }}">{{ site.title }}</a></h1>
|
|
<h2 class="site-description animated fadeIn" itemprop="description">{{ site.description }}</h2>
|
|
</div>
|
|
</header><!-- /.masthead -->{% endif %} |