Sha256: 7f54bcf7fa7cb6ec0a46d8624a98e8c9f8295594a8f888ce5fc7f28226dbd80c

Contents?: true

Size: 811 Bytes

Versions: 8

Compression:

Stored size: 811 Bytes

Contents

%head
  = render_title          # For the title tag, including SEO content
  = render_keywords       # Defaults to what you put in the config file
  = render_description    # Can be hooked up within a mountable rails engine, too.
  = responsive_meta_tag   # If you're using the responsive features, you need this in your head

  = stylesheet_link_tag 'application'

  = render_head_css
  = javascript_include_tag 'application'
  = csrf_meta_tags

%body
  = render 'layouts/top_navigation'

  .container
    = render_hero_unit
    - if user_signed_in?
      - add_widget do
        = boxes_widget
    = render_widgets 'md', 3
    .col-md-9
      = render_h1         # For the h1 tag containing the title alone
      #alert_area
        = alert_flash_messages
      = yield

  %footer
  = render_footer_javascript

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
message_train-0.1.7 spec/dummy/app/views/layouts/application.html.haml
message_train-0.1.6 spec/dummy/app/views/layouts/application.html.haml
message_train-0.1.5 spec/dummy/app/views/layouts/application.html.haml
message_train-0.1.4 spec/dummy/app/views/layouts/application.html.haml
message_train-0.1.3 spec/dummy/app/views/layouts/application.html.haml
message_train-0.1.2 spec/dummy/app/views/layouts/application.html.haml
message_train-0.1.1 spec/dummy/app/views/layouts/application.html.haml
message_train-0.1.0 spec/dummy/app/views/layouts/application.html.haml