Martin Renvoize
b2651484ed
This adds a check that the lang variable is defined before testing against it. In normal operation this is likely a no-op, but it is required for compiling templates during QA. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
[% USE raw %]
|
|
[% USE Asset %]
|
|
[% USE Koha %]
|
|
[% USE KohaPlugins %]
|
|
[% USE String %]
|
|
[% PROCESS 'html_helpers.inc' %]
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
[%# Prevent XFS attacks -%]
|
|
[% UNLESS popup %]
|
|
<style id="antiClickjack">body{display:none !important;}</style>
|
|
[% END %]
|
|
|
|
<link rel="shortcut icon" href="[% IF ( IntranetFavicon ) %][% IntranetFavicon | html %][% ELSE %][% interface | html %]/[% theme | html %]/img/favicon.ico[% END %]" type="image/x-icon" />
|
|
|
|
[% Asset.css("lib/jquery/jquery-ui-1.11.4.min.css") | $raw %]
|
|
[% Asset.css("lib/bootstrap/bootstrap.min.css") | $raw %]
|
|
[% Asset.css("lib/bootstrap/bootstrap-theme.min.css") | $raw %]
|
|
[% Asset.css("lib/font-awesome/css/font-awesome.min.css") | $raw %]
|
|
[% Asset.css("lib/datatables/datatables.min.css") | $raw %]
|
|
[% Asset.css("css/print.css", { media = "print" }) | $raw %]
|
|
[% INCLUDE intranetstylesheet.inc %]
|
|
[% IF ( bidi ) %][% Asset.css("css/right-to-left.css") | $raw %][% END %]
|
|
|
|
<script>
|
|
var Koha = {};
|
|
</script>
|
|
|
|
[% IF lang && lang != 'en' %]
|
|
[% Asset.js(lang _ '/js/locale_data.js') | $raw %]
|
|
[% END %]
|
|
[% Asset.js('js/Gettext.js') | $raw %]
|
|
[% Asset.js('js/i18n.js') | $raw %]
|
|
|
|
[% IF ( login ) %]
|
|
[% Asset.css("css/login.css") | $raw %]
|
|
[% END %]
|
|
[% IF ( IntranetUserCSS ) %]<style>[% IntranetUserCSS | $raw %]</style>[% END %]
|
|
|
|
[% KohaPlugins.get_plugins_intranet_head | $raw %]
|
|
|
|
[% UNLESS ( footerjs ) %]
|
|
[% INCLUDE js_includes.inc %]
|
|
[% END %]
|