mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
27 lines
No EOL
789 B
Text
27 lines
No EOL
789 B
Text
!!!
|
|
%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) : "Admin"
|
|
%meta{:content => "", :name => "description"}
|
|
%meta{:content => "", :name => "author"}
|
|
= stylesheet_link_tag "application"
|
|
= javascript_include_tag "application"
|
|
= csrf_meta_tags
|
|
= yield(:head)
|
|
%body
|
|
.navbar.navbar-fixed-top
|
|
.navbar-inner
|
|
.container-fluid
|
|
= render 'layouts/admin_navigation'
|
|
.container
|
|
.content
|
|
#wrap
|
|
#inner-content
|
|
.row-fluid
|
|
.span12#flash-bar
|
|
= render 'layouts/messages'
|
|
.row-fluid
|
|
.span12
|
|
= yield |