summaryrefslogtreecommitdiff
path: root/_includes/navigation.html
diff options
context:
space:
mode:
authorFranck Cuny <franck@lumberjaph.net>2013-07-25 18:19:52 -0700
committerFranck Cuny <franck@lumberjaph.net>2013-07-25 18:19:52 -0700
commitb42718f7d9aac88a3048c616193f81deff49e401 (patch)
treef964fbae3d81cb6af155d612985f4b344267f4b5 /_includes/navigation.html
parentattempt for a new design (diff)
downloadlumberjaph-b42718f7d9aac88a3048c616193f81deff49e401.tar.gz
First attempt with the new theme.
Diffstat (limited to '_includes/navigation.html')
-rw-r--r--_includes/navigation.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/_includes/navigation.html b/_includes/navigation.html
new file mode 100644
index 0000000..6697c3f
--- /dev/null
+++ b/_includes/navigation.html
@@ -0,0 +1,18 @@
+<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><a href="{{ site.url }}/feed.xml" title="Atom/RSS feed"><i class="icon-rss"></i> 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 -->