source: extensions/stripped_responsive/local_head.tpl @ 29927

Last change on this file since 29927 was 29449, checked in by JanisV, 10 years ago

Initial commit

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1{if $load_css}
2        {combine_css path="themes/default/print.css" order=-10}
3
4        {if !$stripped_responsive.noLowercase}
5                {combine_css path="themes/stripped_responsive/lowercase.css" order=-10}
6        {/if}
7
8        {if ($stripped_responsive.themeStyle == 'black') }
9                {combine_css path="themes/stripped_responsive/theme-black.css" order=-10}
10        {else}
11                {if ($stripped_responsive.themeStyle == 'white') }
12                        {combine_css path="themes/stripped_responsive/theme-white.css" order=-10}
13                {else}
14                        {combine_css path="themes/stripped_responsive/theme-original.css" order=-10}
15                {/if}
16        {/if}
17
18        <!--[if lt IE 7]>
19                <link rel="stylesheet" type="text/css" href="{$ROOT_URL}themes/stripped_responsive/fix-ie5-ie6.css">
20                {if ($stripped_responsive.themeStyle != 'original') }
21                        <link rel="stylesheet" type="text/css" href="{$ROOT_URL}themes/stripped_responsive/fix-ie6-plus.css">
22                {/if}
23        <![endif]-->
24        <!--[if lt IE 8]>
25                <link rel="stylesheet" type="text/css" href="{$ROOT_URL}themes/stripped_responsive/fix-ie7.css">
26        <![endif]-->
27
28{/if}
29
30{include file='config.js.tpl'}
31
32{if $BODY_ID=='thePicturePage'}
33        {combine_script id='scripts-tpp' load='header' require='jquery' path='themes/stripped_responsive/js/scripts-tpp.js'}
34{else}
35        {combine_script id='scripts-tcp' load='header' require='jquery.ui.effect-blind' path='themes/stripped_responsive/js/scripts-tcp.js'}
36{/if}
37
38{if isset($stripped_responsive.imagePreload)}
39        {combine_script id='preload' load='header' require='jquery' path='themes/stripped_responsive/js/preload.js'}
40{/if}
41
42<script type="text/javascript">
43        document.documentElement.className = 'js';
44</script>
Note: See TracBrowser for help on using the repository browser.