mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
a9ab8b7bf7
- Fixes #88 - Replace overlay with dedicated search page (see /search/index.md) - Replace simpleJekyllSearch.js - Include pages in search.json index
35 lines
No EOL
1.5 KiB
HTML
35 lines
No EOL
1.5 KiB
HTML
<div class="navigation-wrapper">
|
|
<nav role="navigation" id="site-nav" class="animated drop">
|
|
<ul>
|
|
{% 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 %}
|
|
</ul>
|
|
</nav>
|
|
</div><!-- /.navigation-wrapper -->
|
|
|
|
{% include browser-upgrade.html %}
|
|
|
|
{% if page.image.feature %}<header class="masthead">
|
|
{% if site.logo != null %}
|
|
<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" alt="{{ site.title }} logo" class="animated bounceInDown"></a>
|
|
</div>
|
|
{% endif %}
|
|
</header><!-- /.masthead -->
|
|
{% else %}<header class="masthead">
|
|
<div class="wrap">
|
|
{% if site.logo != null %}
|
|
<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>
|
|
{% endif %}
|
|
<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 %}
|
|
|
|
<div class="js-menu-screen menu-screen"></div> |