From cfc848b97a910d6e0c96d15cfe457a815719d573 Mon Sep 17 00:00:00 2001 From: Chris Woodall Date: Sat, 7 Apr 2018 13:53:21 -0700 Subject: [PATCH] fix spacing in page title --- app/views/layouts/admin.html.haml | 2 +- app/views/layouts/application.html.haml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/layouts/admin.html.haml b/app/views/layouts/admin.html.haml index 4d6c80b1..92c435fd 100644 --- a/app/views/layouts/admin.html.haml +++ b/app/views/layouts/admin.html.haml @@ -3,7 +3,7 @@ %head %title = content_for?(:title) ? yield(:title) : 'Untitled' - = " - #{tenant.name}" if tenant + != " :: #{tenant.name}" if tenant = stylesheet_link_tag "themes/admin" -#= favicon_link_tag "themes/#{theme}/icon.ico" = javascript_include_tag :application diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 171ef5c7..d0c44e01 100644 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -3,7 +3,7 @@ %head %title = content_for?(:title) ? yield(:title) : 'Untitled' - != " - #{tenant.name}" if tenant + != " :: #{tenant.name}" if tenant - theme = tenant&.theme - if theme and !theme.empty? = stylesheet_link_tag "themes/#{theme}"