Update settings to re-use admin layout, one big navigation tree, improve settings forms
This commit is contained in:
@ -1,14 +1,17 @@
|
||||
- content_for :header_tags do
|
||||
= javascript_include_tag 'application_public'
|
||||
|
||||
|
||||
- content_for :content do
|
||||
.admin-wrapper
|
||||
.sidebar
|
||||
= link_to root_path do
|
||||
= image_tag 'logo.png', class: 'logo'
|
||||
.sidebar-wrapper
|
||||
.sidebar
|
||||
= link_to root_path do
|
||||
= image_tag 'logo.png', class: 'logo'
|
||||
|
||||
= render_navigation
|
||||
.content
|
||||
= yield
|
||||
= render_navigation
|
||||
.content-wrapper
|
||||
.content
|
||||
%h2= yield :page_title
|
||||
= yield
|
||||
|
||||
= render template: "layouts/application"
|
||||
= render template: "layouts/application", locals: { body_classes: 'admin' }
|
||||
|
@ -20,5 +20,7 @@
|
||||
|
||||
= yield :header_tags
|
||||
|
||||
%body{ class: @body_classes }
|
||||
- body_classes ||= @body_classes
|
||||
|
||||
%body{ class: body_classes }
|
||||
= content_for?(:content) ? yield(:content) : yield
|
||||
|
Reference in New Issue
Block a user