Sha256: 666a079e21abea6cda0131d6c648fd5d1d85f831fb9668caa3875ceba4305db2

Contents?: true

Size: 877 Bytes

Versions: 1

Compression:

Stored size: 877 Bytes

Contents

%html(xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en")
  %head
    %title=yield(:title) || APP_CONFIG[:app_name]
    %meta{:name => 'description', :content => "#{(yield(:description) || APP_CONFIG[:app_name])}"}
    %meta{:name => 'keywords', :content => "#{(yield(:keywords) || APP_CONFIG[:app_name])}"}
    = stylesheet_link_tag 'application'
    = javascript_include_tag 'application'
    = csrf_meta_tag
    = yield(:head)
  %body
    #header
      .inner
        =render 'application/header'
    #container
      #main_container
        = render 'application/nav'
        .content.clearfix
          #main
            - flash.each do |name, msg|
              = content_tag :div, msg, :id => "flash_#{name}"
            = yield
          #sidebar
            = yield(:sidebar)
        = render 'application/footer'
      #overlay.overlay
        .contentWrap

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sbdevcore-0.2.0 app/views/layouts/application.html.haml