Sha256: fd36afb9375cdbe299889f500bf75732d341cb06c718c62582ef4d8a9fa7b896

Contents?: true

Size: 815 Bytes

Versions: 9

Compression:

Stored size: 815 Bytes

Contents

%html(xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en")
  %head
    %title=yield(:title)
    %meta{:name => 'description', :content => yield(:description)}
    %meta{:name => 'keywords', :content => yield(:keywords)}
    = 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'
        - flash.each do |name, msg|
          = content_tag :div, msg, :id => "flash_#{name}"
        .content.clearfix
          #sidebar
            = yield(:sidebar)
          #main
            = yield
            = yield(:post_content)
        = render 'application/footer'
      #overlay.overlay
        .contentWrap

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
sbdevcore-0.2.12 app/views/layouts/application.html.haml
sbdevcore-0.2.11 app/views/layouts/application.html.haml
sbdevcore-0.2.10 app/views/layouts/application.html.haml
sbdevcore-0.2.9 app/views/layouts/application.html.haml
sbdevcore-0.2.8 app/views/layouts/application.html.haml
sbdevcore-0.2.7 app/views/layouts/application.html.haml
sbdevcore-0.2.6 app/views/layouts/application.html.haml
sbdevcore-0.2.5 app/views/layouts/application.html.haml
sbdevcore-0.2.4 app/views/layouts/application.html.haml