diff options
Diffstat (limited to 'templates/web/base/header.html')
-rw-r--r-- | templates/web/base/header.html | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/templates/web/base/header.html b/templates/web/base/header.html index 7f423ff9e..b3d77b3a6 100644 --- a/templates/web/base/header.html +++ b/templates/web/base/header.html @@ -4,12 +4,9 @@ # SET html_att = html_att _ ' dir="rtl"'; -%] <!doctype html> -<!--[if IE 8]> <html class="no-js ie8"[% html_att %]><![endif]--> -<!--[if IE 9]> <html class="no-js ie9"[% html_att %]><![endif]--> -<!--[if gt IE 9]><!--><html class="no-js"[% html_att %] -[% IF appcache ~%] - manifest="/offline/appcache.manifest" -[%~ END %]><!--<![endif]--> +<!--[if IE 8]> <html class="no-js ie8"[% html_att | safe %]><![endif]--> +<!--[if IE 9]> <html class="no-js ie9"[% html_att | safe %]><![endif]--> +<!--[if gt IE 9]><!--><html class="no-js"[% html_att | safe %]><!--<![endif]--> <head> <meta name="viewport" content="initial-scale=1.0"> @@ -26,15 +23,14 @@ [% TRY %][% PROCESS 'set_body_class.html' %][% CATCH file %][% END %] <body class="[% bodyclass | html IF bodyclass %]"> + [% INCLUDE 'debug_header.html' %] [% TRY %][% PROCESS 'before_wrapper.html' %][% CATCH file %][% END %] <div class="wrapper"> <div class="table-cell"> [% INCLUDE 'header_site.html' %] - [% pre_container_extra %] + [% pre_container_extra | safe %] <div class="container"> <div class="content[% " $mainclass" | html IF mainclass %]" role="main"> - - <!-- [% INCLUDE 'debug_header.html' %] --> |