From 9de59307c9cddf689ea3f302571bb6cfd0d689fa Mon Sep 17 00:00:00 2001 From: Lars Henrik Mai Date: Sun, 21 Sep 2014 11:31:35 +0200 Subject: converted templates from erb to haml --- source/layouts/layout.haml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 source/layouts/layout.haml (limited to 'source/layouts/layout.haml') diff --git a/source/layouts/layout.haml b/source/layouts/layout.haml new file mode 100644 index 0000000..53cf1ae --- /dev/null +++ b/source/layouts/layout.haml @@ -0,0 +1,25 @@ + +%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"}/ + / For proper display on mobile + %meta{:content => "width=device-width, initial-scale=1", :name => "viewport"}/ + / Use title if it's in the page YAML frontmatter + %title= current_page.data.title || "sublab" + = stylesheet_link_tag "base" + = javascript_include_tag "all" + %body{:class => page_classes} + / header + %header + #logo + - link_to '/index.html' do + = image_tag 'sublab-logo.png', class: "img-responsive" + / main navigation + %nav + = partial "navigation" + / content + #content + %section#main + = yield -- cgit v1.2.1