diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 22:13:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 22:13:06 -0400 |
commit | cf13c97cb2890d7bf51540f632cf725f89baefd9 (patch) | |
tree | d58925eed77815140c011bb70667fdc4b80173c5 /app/views/layouts | |
parent | 65b3a2a5a6e3151cf4da89132326b796a5c0687a (diff) | |
parent | 90a408f5927956f0cbe9b81812daca7b4a92d807 (diff) |
Merge branch 'master' into master
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/application.html.haml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 7eae6982b..abab14a28 100644 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -11,8 +11,10 @@ %meta{:name => "theme-color", :content => "#282c37"}/ %meta{:name => "apple-mobile-web-app-capable", :content => "yes"}/ - %title - = "#{yield(:page_title)} - " if content_for?(:page_title) + %title< + - if content_for?(:page_title) + = yield(:page_title) + = ' - ' = Setting.site_title = stylesheet_link_tag 'application', media: 'all' |