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