source: extensions/modus/template/header.tpl @ 26010

Last change on this file since 26010 was 25976, checked in by rvelices, 10 years ago

modus update

File size: 1.9 KB
Line 
1<!DOCTYPE html>
2<html lang={$lang_info.code} dir={$lang_info.direction}>
3<head>
4<title>{if $PAGE_TITLE=='Home'|@translate}{$GALLERY_TITLE}{else}{$PAGE_TITLE}{/if}</title>
5{strip}{get_combined_css}
6{combine_css path="themes/`$themeconf.id`/css/base.css.tpl" version=$MODUS_CSS_VERSION template=true order=-10}
7{combine_css path="themes/`$themeconf.id`/css/iconfontello.css.tpl" version=$MODUS_CSS_VERSION template=true order=-10}
8{combine_css path="themes/`$themeconf.id`/css/menuh.css.tpl" version=$MODUS_CSS_VERSION template=true order=-10}
9{combine_css path="themes/`$themeconf.id`/css/index.css.tpl" version=$MODUS_CSS_VERSION template=true order=-10}
10{combine_css path="themes/`$themeconf.id`/css/picture.css.tpl" version=$MODUS_CSS_VERSION template=true order=-10}
11{combine_css path="themes/`$themeconf.id`/css/tags.css" order=-10}
12{combine_css path="themes/`$themeconf.id`/css/print.css" order=-10}
13{/strip}
14{if isset($U_PREFETCH)}<link rel=prefetch href="{$U_PREFETCH}">{/if}
15{if isset($U_CANONICAL)}<link rel=canonical href="{$U_CANONICAL}">{/if}
16{if not empty($page_refresh)}<meta http-equiv="refresh" content="{$page_refresh.TIME};url={$page_refresh.U_REFRESH}">{/if}
17{get_combined_scripts load='header'}
18{if empty($smarty.server.HTTP_USER_AGENT) || strpos($smarty.server.HTTP_USER_AGENT, 'MSIE')}
19<!--[if lt IE 9]><script type="text/javascript" src="{$ROOT_URL}themes/{$themeconf.id}/html5shiv.js"></script><![endif]-->
20{/if}
21<meta name=viewport content="width=device-width,initial-scale=1">
22{*combine_script id='jquery' load='footer'*}
23{if not empty($head_elements)}{foreach from=$head_elements item=elt}{$elt}
24{/foreach}{/if}
25</head>
26
27<body id={$BODY_ID}>
28{if not empty($header_msgs)}
29<div class="header_msgs">
30{if not empty($header_msgs)}
31        {foreach from=$header_msgs item=elt}
32        <p>{$elt}</p>
33        {/foreach}
34{/if}
35{if not empty($header_notes)}
36        {foreach from=$header_notes item=elt}
37        <p>{$elt}</p>
38  {/foreach}
39{/if}
40</div>
41{/if}
42{*<div id="theHeader">{$PAGE_BANNER}</div>*}
Note: See TracBrowser for help on using the repository browser.