aboutsummaryrefslogtreecommitdiff
path: root/site/jekyll/_includes/header.html
diff options
context:
space:
mode:
Diffstat (limited to 'site/jekyll/_includes/header.html')
-rw-r--r--site/jekyll/_includes/header.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/site/jekyll/_includes/header.html b/site/jekyll/_includes/header.html
new file mode 100644
index 0000000..51c1c7d
--- /dev/null
+++ b/site/jekyll/_includes/header.html
@@ -0,0 +1,23 @@
+{% capture content %}
+<header>
+ <nav class="navbar navbar-static-top navbar-default">
+ <div class="container">
+ <div class="navbar-header">
+ <a class="navbar-brand" href="/">
+ <img src="{{site.url}}/assets/images/logo.png" alt="flow logo">
+ flow
+ </a>
+ </div>
+ <ul class="nav navbar-nav navbar-right">
+ <li><a href="{{site.url}}/documentation">Documentation & Help</a></li>
+ <li><a href="{{site.url}}/downloads">Download</a></li>
+ <li><a href="https://github.com/jodersky/flow">GitHub</a></li>
+ </ul>
+ </div>
+ </nav>
+</header>
+
+{{ content }}
+
+{% endcapture %}
+{% include main.html %}