mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-29 12:12:57 -04:00
37 lines
961 B
Plaintext
37 lines
961 B
Plaintext
!!! 5
|
|
%html{ lang: "en", prefix: "og: http://ogp.me/ns#" }
|
|
= yield :scripts
|
|
= render partial: "layouts/meta"
|
|
%body
|
|
= render partial: "layouts/header"
|
|
|
|
#maincontainer
|
|
.row
|
|
.col-md-6
|
|
- if content_for?(:title)
|
|
%h1#title
|
|
= yield(:title)
|
|
- if content_for?(:subtitle)
|
|
%small= yield(:subtitle)
|
|
|
|
- if content_for?(:buttonbar)
|
|
.btn-group.layout-actions
|
|
= yield(:buttonbar)
|
|
|
|
.col-md-6
|
|
= render 'shared/global_actions'
|
|
|
|
.row
|
|
.col-md-12
|
|
= render partial: "shared/flash_messages", flash: flash
|
|
= yield
|
|
|
|
%footer
|
|
= render "layouts/footer"
|
|
/
|
|
Javascripts
|
|
\==================================================
|
|
/ Placed at the end of the document so the pages load faster
|
|
= javascript_include_tag "application"
|
|
!= Rails.application.config.analytics_code
|