diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 21:59:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 21:59:21 -0400 |
commit | 4c05f0e630aacad594e7b21147340e2c0a0ac8ad (patch) | |
tree | 4ef28c2f42dd8e4cdfd9815dd6550b5bd2601f36 /app/views/layouts | |
parent | 96812a6c792c8b048ed8d4a50351d9696dcf0f77 (diff) | |
parent | d438eab67301e767bdd040c6f9bd831c92214656 (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' |