diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-30 18:23:20 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-06-30 18:23:20 -0400 |
commit | 1fb650f48213117fb3ad3eedc6c041d7269adf05 (patch) | |
tree | bc9f561ce8446bc98cec42d104e522b63b8617f7 /app/views/layouts/userdata.html.haml | |
parent | 4fe8ef40ee70bee9d4ad897b51f602231e81bfc3 (diff) | |
download | thoughts-1fb650f48213117fb3ad3eedc6c041d7269adf05.tar.gz thoughts-1fb650f48213117fb3ad3eedc6c041d7269adf05.tar.bz2 thoughts-1fb650f48213117fb3ad3eedc6c041d7269adf05.zip |
Split up stylesheets for each layout
Diffstat (limited to 'app/views/layouts/userdata.html.haml')
-rw-r--r-- | app/views/layouts/userdata.html.haml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/layouts/userdata.html.haml b/app/views/layouts/userdata.html.haml index f6e3b57..29e47b2 100644 --- a/app/views/layouts/userdata.html.haml +++ b/app/views/layouts/userdata.html.haml | |||
@@ -3,16 +3,16 @@ | |||
3 | %head | 3 | %head |
4 | %title Thoughts | 4 | %title Thoughts |
5 | = csrf_meta_tags | 5 | = csrf_meta_tags |
6 | = stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' | 6 | = stylesheet_link_tag 'userdata', media: 'all', 'data-turbolinks-track': 'reload' |
7 | = javascript_include_tag 'application', 'data-turbolinks-track': 'reload' | 7 | = javascript_include_tag 'application', 'data-turbolinks-track': 'reload' |
8 | %body#userdata-body | 8 | %body |
9 | #userdata-container | 9 | #container |
10 | - if flash[:alert] | 10 | - if flash[:alert] |
11 | #userdata-flash.userdata-flash-alert | 11 | #flash.flash-alert |
12 | %span.userdata-flash-tag ERROR: | 12 | %span.flash-tag ERROR: |
13 | = flash.alert | 13 | = flash.alert |
14 | - if flash[:notice] | 14 | - if flash[:notice] |
15 | #userdata-flash.userdata-flash-notice | 15 | #flash.flash-notice |
16 | %span.userdata-flash-tag NOTICE: | 16 | %span.flash-tag NOTICE: |
17 | = flash.notice | 17 | = flash.notice |
18 | = yield | 18 | = yield |