mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
40 lines
2 KiB
HTML
40 lines
2 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>
|
|
{% if link.external %}
|
|
<a href="{{ link.url }}">{{ link.title }}</a>
|
|
{% else %}
|
|
<a href="{{ site.url }}{{ link.url }}">{{ link.title }}</a>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
<li><a href="{{ site.url }}/feed.xml" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a></li>
|
|
{% if site.search %}<li class="dosearch"><i class="icon-search"></i> Search</li>{% endif %}
|
|
</ul>
|
|
</nav>
|
|
</div><!-- /.navigation-wrapper -->
|
|
|
|
{% include browser-upgrade.html %}
|
|
|
|
{% if site.search %}<div class="search-wrapper">
|
|
<div class="search-form">
|
|
<input type="text" class="search-field" placeholder="Search...">
|
|
<i class="icon-remove-sign icon-2x"></i>
|
|
<ul class="search-results post-list"></ul><!-- /.search-results -->
|
|
</div><!-- /.search-form -->
|
|
</div><!-- ./search-wrapper -->{% endif %}
|
|
|
|
{% 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 %}
|