diff options
Diffstat (limited to 'source/layouts')
-rw-r--r-- | source/layouts/layout.erb | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/source/layouts/layout.erb b/source/layouts/layout.erb index 7338ea2..a88ab54 100644 --- a/source/layouts/layout.erb +++ b/source/layouts/layout.erb @@ -6,16 +6,40 @@ <!-- 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 name="viewport" content="width=device-width, initial-scale=1"> + <!-- Use title if it's in the page YAML frontmatter --> - <title><%= current_page.data.title || "The Middleman" %></title> + <title><%= current_page.data.title || "sublab" %></title> - <%= stylesheet_link_tag "normalize", "all", "bootstrap", "bootstrap-theme" %> + <%= stylesheet_link_tag "all", "bootstrap", "bootstrap-theme" %> <%= javascript_include_tag "all", "bootstrap" %> </head> <body class="<%= page_classes %>"> - <%= partial "navigation" %> - <%= yield %> - <%= partial "status" %> + + <div class="container"> + + <div class="header"> + <h1>sublab</h1> + </div> + + <div class="row"> + + <div class="col-md-2"> + <%= partial "navigation" %> + </div> + + <div class="col-md-7"> + <%= yield %> + </div> + + <div class="col-md-3"> + <%= partial "status" %> + </div> + + </div> <!-- end main row --> + + </div> <!-- end container --> </body> </html> |