diff options
-rw-r--r-- | templates/web/default/debug_footer.html | 9 | ||||
-rw-r--r-- | templates/web/default/footer.html | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/templates/web/default/debug_footer.html b/templates/web/default/debug_footer.html new file mode 100644 index 000000000..d2829575b --- /dev/null +++ b/templates/web/default/debug_footer.html @@ -0,0 +1,9 @@ +[% IF c.config.STAGING_SITE %] +<hr clear="both"> +<ul> + <li>cobrand.moniker: [% c.cobrand.moniker %]</li> + <li>additional_template_paths: [% additional_template_paths.join(', ') || '--empty--' %]</li> + <li>lang_code: [% lang_code %]</li> +</ul> +[% END %] + diff --git a/templates/web/default/footer.html b/templates/web/default/footer.html index 6d6c82f0c..75a63708f 100644 --- a/templates/web/default/footer.html +++ b/templates/web/default/footer.html @@ -21,14 +21,7 @@ [% INCLUDE 'tracking_code.html' %] -[% IF c.config.STAGING_SITE %] -<hr clear="both"> -<ul> - <li>cobrand.moniker: [% c.cobrand.moniker %]</li> - <li>additional_template_paths: [% additional_template_paths.join(', ') || '--empty--' %]</li> - <li>lang_code: [% lang_code %]</li> -</ul> -[% END %] +[% INCLUDE 'debug_footer.html' %] </body> </html> |