source: trunk/forum/styles/prosilver/template/simple_header.html

Last change on this file was 702, checked in by george, 15 years ago
  • Upraveno: Aktualizace fóra.
File size: 2.5 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
3<head>
4
5<meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
6<meta http-equiv="content-style-type" content="text/css" />
7<meta http-equiv="content-language" content="{S_USER_LANG}" />
8<meta http-equiv="imagetoolbar" content="no" />
9<meta name="resource-type" content="document" />
10<meta name="distribution" content="global" />
11<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
12<meta name="keywords" content="" />
13<meta name="description" content="" />
14{META}
15<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>
16
17<script type="text/javascript">
18// <![CDATA[
19
20 var jump_page = '{LA_JUMP_PAGE}:';
21 var on_page = '{ON_PAGE}';
22 var per_page = '{PER_PAGE}';
23 var base_url = '{A_BASE_URL}';
24 var style_cookie = 'phpBBstyle';
25 var onload_functions = new Array();
26 var onunload_functions = new Array();
27 var style_cookie_settings = '{A_COOKIE_SETTINGS}';
28
29 /**
30 * New function for handling multiple calls to window.onload and window.unload by pentapenguin
31 */
32 window.onload = function()
33 {
34 for (var i = 0; i < onload_functions.length; i++)
35 {
36 eval(onload_functions[i]);
37 }
38 }
39
40 window.onunload = function()
41 {
42 for (var i = 0; i < onunload_functions.length; i++)
43 {
44 eval(onunload_functions[i]);
45 }
46 }
47
48// ]]>
49</script>
50<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
51<script type="text/javascript" src="{T_TEMPLATE_PATH}/forum_fn.js"></script>
52
53<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
54<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />
55
56<link href="{T_THEME_PATH}/normal.css" rel="alternate stylesheet" type="text/css" title="A" />
57<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" />
58<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" />
59
60<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
61 <link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
62<!-- ENDIF -->
63
64<!-- DEFINE $POPUP = 1 -->
65
66</head>
67
68<body id="phpbb" class="{S_CONTENT_DIRECTION}">
69
70<div id="simple-wrap">
71 <a id="top" name="top" accesskey="t"></a>
72 <div id="page-body">
Note: See TracBrowser for help on using the repository browser.