app/views/layouts/application.html.haml
!!! html
%html
%head
%title
= t('.title')
—
= yield(:page_title).present? ? yield(:page_title) : yield(:title)
%meta{ :content => "text/html; charset=utf-8", "http-equiv" => "content-type" }/
= favicon_link_tag
= csrf_meta_tag
= stylesheet_link_tag :application
= javascript_include_tag :application
= yield :head
%body{:id => controller.controller_name, :class => controller.action_name}
#header
%div
= link_to t('.errbit'), root_path, :id => 'site-name'
= render 'shared/navigation' if current_user
= render 'shared/session'
#content-wrapper
#content-title{ :class => (yield :title_css_class).to_s, :style => (yield :title_style) }
%h1= yield :title
%span.meta= yield :meta
- if (action_bar = yield(:action_bar)).present?
#action-bar
= action_bar
#content
= render 'shared/flash_messages'
= yield
- if content_for?(:comments)
#content-comments
= yield :comments
#footer
= t('.powered_html', :link => link_to(t('.errbit'), 'http://github.com/errbit/errbit', :target => '_blank'))
%br
= Errbit::Version.to_s
= yield :scripts