mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
First checkin
This commit is contained in:
parent
f207e2c8b7
commit
90b30db9e8
260 changed files with 37349 additions and 0 deletions
35
app/views/layouts/application.html.haml
Normal file
35
app/views/layouts/application.html.haml
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
!!!
|
||||
%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", :media => "all"
|
||||
= 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
|
||||
.span12
|
||||
= 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
|
||||
= link_to "Github.", "https://github.com/mbarringer/osem"
|
||||
Loading…
Add table
Add a link
Reference in a new issue