osem-fcy/app/views/layouts/application.html.haml

45 lines
1.5 KiB
Text
Raw Normal View History

2013-01-07 09:04:09 +01:00
!!!
%html
%head
%meta{:charset => "utf-8"}
%meta{:name => "viewport", :content => "width=device-width, initial-scale=1, maximum-scale=1"}
%title= content_for?(:title) ? yield(:title) : "OSEM"
%meta{:content => "", :name => "description"}
%meta{:content => "", :name => "author"}
= stylesheet_link_tag "application"
2013-01-07 09:04:09 +01:00
= javascript_include_tag "application"
= csrf_meta_tags
= yield(:head)
%body
.navbar.navbar-fixed-top
.navbar-inner
.container-fluid
= render 'layouts/navigation'
.container
.content
#wrap
#inner-content
.row-fluid
.span12
= render 'layouts/messages'
.row-fluid
2013-02-03 13:01:11 +01:00
%noscript
:css
#yield-span {
display: none;
}
%h2
JavaScript is not enabled
%p
OSEM requires JavaScript to be enabled to function. Please turn on JavaScript in your browser's settings and reload the page to continue.
.span12#yield-span
2013-01-07 09:04:09 +01:00
= yield
#push
#footer
.container
%p.muted.credit.center-text{:style => "font-size: 10px;"}
OSEM is (C) 2013
= link_to "Matt Barringer", "http://incoherent.de"
and released under the GPL. You can get the source code from
2013-02-03 13:01:11 +01:00
= link_to "Github.", "https://github.com/mbarringer/osem"