diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 21:48:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 21:48:19 -0400 |
commit | 5dfc9854f1612bc7e55524175170fd40c7dbe21a (patch) | |
tree | cb96d7cd349ebdc93104ec05886d8256467cdaf7 /app/views/layouts | |
parent | 9cf0b5b2557a6e26542a39c3fb31f46a15073662 (diff) | |
parent | b300bb3b4e45d7e52a5a0f2db3c9ed383fc4ebbb (diff) |
Merge branch 'master' into patch-1
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' |