logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 1736badf28eae2ba42e42f9fef2e151e35d5397a
parent: 88725d6ce85115ea3b0652007db5d40a1c069be3
Author: Ashley <expenses@airmail.cc>
Date:   Fri, 28 Apr 2017 01:17:55 +1200

Added '(dev)' to the title in development mode (#2524)

* Added different title for dev

* Changed indentation

Diffstat:

Mapp/helpers/application_helper.rb4++++
Mapp/views/layouts/application.html.haml2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb @@ -18,4 +18,8 @@ module ApplicationHelper env_suffix = Rails.env.production? ? '' : '-dev' asset_path "favicon#{env_suffix}.ico" end + + def title + Rails.env.production? ? site_title : "#{site_title} (Dev)" + end end diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml @@ -17,7 +17,7 @@ - if content_for?(:page_title) = yield(:page_title) = ' - ' - = site_title + = title = stylesheet_link_tag stylesheet_for_layout, media: 'all' = csrf_meta_tags