Bug 13948: Add ability to dump template toolkit variables to html comment
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / doc-head-open.inc
1 <!DOCTYPE html>
2 <!-- TEMPLATE FILE: [% template.name.split('/').last %] -->
3
4 [% USE Koha %]
5 [% IF Koha.Preference('DumpTemplateVarsIntranet') %]
6     [% USE Stash %]
7     [% USE Dumper %]
8     <!--
9     [% FILTER replace('<!--', '<!- -') %]
10         [% FILTER replace('-->', '- ->') %]
11             [% Dumper.dump( Stash.stash() ) %]
12         [% END %]
13     [% END %]
14     -->
15 [% END %]
16
17 [% IF ( bidi ) %]<html lang="[% lang %]" dir="[% bidi %]">[% ELSE %]<html lang="[% lang %]">[% END %]
18 <head>