Sha256: 1067732ec786c2c160ea5e39cbd2d7e18241885f7c2f187a76bb29fc79137d1c

Contents?: true

Size: 829 Bytes

Versions: 5

Compression:

Stored size: 829 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
    .row
      - if user_signed_in?
        = message_train_widget
      = render_widgets 'md', 3
      .col-md-9.content
        = render_h1         # For the h1 tag containing the title alone
        #alert_area
          = alert_flash_messages
        = yield

  %footer
  = render_footer_javascript

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
message_train-0.7.6 spec/dummy/app/views/layouts/application.html.haml
message_train-0.7.5 spec/dummy/app/views/layouts/application.html.haml
message_train-0.7.3 spec/dummy/app/views/layouts/application.html.haml
message_train-0.7.2 spec/dummy/app/views/layouts/application.html.haml
message_train-0.7.1 spec/dummy/app/views/layouts/application.html.haml