diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 7ab3323..e928f9f 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -433,19 +433,19 @@ module ApplicationHelper end def theme_site_title - theme_include('site_title') + @theme_site_title ||= theme_include 'site_title' end def theme_header - theme_include('header') + @theme_header ||= theme_include 'header' end def theme_footer - theme_include('footer') + @theme_footer ||= theme_include 'footer' end def theme_extra_navigation - theme_include('navigation') + @theme_extra_navigation ||= theme_include 'navigation' end def is_testing_theme -- libgit2 0.21.2