engine/app/views/admin/layouts/application.html.haml

32 lines
643 B
Plaintext
Raw Normal View History

2010-04-24 00:32:36 +00:00
!!! XML
!!!
%html{ :xmlns => 'http://www.w3.org/1999/xhtml' }
%head
= render 'admin/shared/head'
%body{ :class => sections }
#wrapper
.container
#header
= render 'admin/shared/header'
= render 'admin/shared/menu'
2010-07-23 23:58:10 +00:00
2010-04-24 00:32:36 +00:00
#submenu
%ul
= yield :submenu
- if content_for? :actions
.action
= yield :actions
2010-07-23 23:58:10 +00:00
2010-04-24 00:32:36 +00:00
#content
.inner
2010-07-23 23:58:10 +00:00
%h2!= title
2010-04-24 00:32:36 +00:00
#local-actions-bar
 
2010-04-24 00:32:36 +00:00
= yield :buttons
2010-07-23 23:58:10 +00:00
2010-04-24 00:32:36 +00:00
= yield
2010-07-23 23:58:10 +00:00
2010-04-24 00:32:36 +00:00
#footer
= render 'admin/shared/footer'