mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-16 04:05:30 -04:00
Conflicts: Gemfile Gemfile.lock app/models/crop.rb app/models/forum.rb app/models/photo.rb app/models/planting.rb app/models/seed.rb db/schema.rb spec/models/garden_spec.rb spec/models/planting_spec.rb
30 lines
855 B
Plaintext
30 lines
855 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-12
|
|
- 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)
|
|
= render partial: "shared/flash_messages", flash: flash
|
|
= yield
|
|
|
|
%footer
|
|
= render partial: "layouts/footer"
|
|
/
|
|
Javascripts
|
|
\==================================================
|
|
/ Placed at the end of the document so the pages load faster
|
|
= javascript_include_tag "application"
|
|
!= Rails.application.config.analytics_code
|