summaryrefslogtreecommitdiff
path: root/source/layouts/layout.erb
diff options
context:
space:
mode:
authorLars Henrik Mai <lars.mai@kontinui.de>2014-04-06 16:36:03 +0200
committerLars Henrik Mai <lars.mai@kontinui.de>2014-04-06 16:36:03 +0200
commitba2251c2521a7b11d0e2b2a7627f877fd05eee2e (patch)
tree9e14a07d0d6b66a8c17f05ce5cd8026fdf32e50d /source/layouts/layout.erb
parent01aaa6d6d0eac9a1abdc47874b9e6e3967f57cfb (diff)
move navigation to layout
Diffstat (limited to 'source/layouts/layout.erb')
-rw-r--r--source/layouts/layout.erb11
1 files changed, 6 insertions, 5 deletions
diff --git a/source/layouts/layout.erb b/source/layouts/layout.erb
index 7bdfeb1..dc454c0 100644
--- a/source/layouts/layout.erb
+++ b/source/layouts/layout.erb
@@ -2,18 +2,19 @@
<html>
<head>
<meta charset="utf-8">
-
+
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
-
+
<!-- Use title if it's in the page YAML frontmatter -->
<title><%= current_page.data.title || "The Middleman" %></title>
-
+
<%= stylesheet_link_tag "normalize", "all" %>
<%= javascript_include_tag "all" %>
</head>
-
+
<body class="<%= page_classes %>">
+ <%= partial "navigation" %>
<%= yield %>
</body>
-</html> \ No newline at end of file
+</html>