This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-01-02 13:31:10 -08:00
|
|
|
- content_for :header_tags do
|
|
|
|
= javascript_include_tag 'application_public'
|
2017-01-27 18:56:10 -08:00
|
|
|
|
2016-12-13 04:42:10 -08:00
|
|
|
- content_for :content do
|
|
|
|
.admin-wrapper
|
2017-01-27 18:56:10 -08:00
|
|
|
.sidebar-wrapper
|
|
|
|
.sidebar
|
|
|
|
= link_to root_path do
|
|
|
|
= image_tag 'logo.png', class: 'logo'
|
2016-12-13 04:42:10 -08:00
|
|
|
|
2017-01-27 18:56:10 -08:00
|
|
|
= render_navigation
|
|
|
|
.content-wrapper
|
|
|
|
.content
|
|
|
|
%h2= yield :page_title
|
|
|
|
= yield
|
2016-12-13 04:42:10 -08:00
|
|
|
|
2017-01-27 18:56:10 -08:00
|
|
|
= render template: "layouts/application", locals: { body_classes: 'admin' }
|