summaryrefslogtreecommitdiff
path: root/_includes/navigation.html
diff options
context:
space:
mode:
authorFranck Cuny <franck@lumberjaph.net>2013-07-25 18:35:25 -0700
committerFranck Cuny <franck@lumberjaph.net>2013-07-25 18:35:25 -0700
commit3d46aca2693381e81045210c41e782431acd1ed9 (patch)
tree410067ba6ce89d6a371e1c06643a14b2bede85e5 /_includes/navigation.html
parentnew post - patch.pm (diff)
parentAdd a page with my talks. (diff)
downloadlumberjaph-3d46aca2693381e81045210c41e782431acd1ed9.tar.gz
Merge branch 'design'
* design: Add a page with my talks. Remove more files. use index.atom for our feed. add openid to our header. remove unused layout templates. I don't need tags. Remove useless empty page. First attempt with the new theme. attempt for a new design
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..8ed6a73
--- /dev/null
+++ b/_includes/navigation.html
@@ -0,0 +1,18 @@
+<div class="navigation-wrapper">
+ <nav role="navigation" id="site-nav" class="" 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 }}/index.atom" 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"><a href="{{ site.url }}">{{ site.title }}</a></h1>
+ <h2 class="site-description">{{ site.description }}</h2>
+ </div>
+</header><!-- /.masthead -->