source: www/forum/styles/prosilver/template/simple_header.html@ 54

Last change on this file since 54 was 54, checked in by george, 17 years ago

Přidáno: Forum phpBB 3.

  • Property svn:executable set to *
File size: 2.2 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="2002-2006 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 onload_functions = new Array();
21 var onunload_functions = new Array();
22
23 /**
24 * New function for handling multiple calls to window.onload and window.unload by pentapenguin
25 */
26 window.onload = function()
27 {
28 for (var i = 0; i < onload_functions.length; i++)
29 {
30 eval(onload_functions[i]);
31 }
32 }
33
34 window.onunload = function()
35 {
36 for (var i = 0; i < onunload_functions.length; i++)
37 {
38 eval(onunload_functions[i]);
39 }
40 }
41
42// ]]>
43</script>
44<script type="text/javascript" src="{T_TEMPLATE_PATH}/styleswitcher.js"></script>
45
46<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
47<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />
48
49<link href="{T_THEME_PATH}/normal.css" rel="alternate stylesheet" type="text/css" title="A" />
50<link href="{T_THEME_PATH}/medium.css" rel="alternate stylesheet" type="text/css" title="A+" />
51<link href="{T_THEME_PATH}/large.css" rel="alternate stylesheet" type="text/css" title="A++" />
52
53<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
54 <link href="{T_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
55<!-- ENDIF -->
56
57<!-- DEFINE $POPUP = 1 -->
58
59</head>
60
61<body id="phpbb" class="{S_CONTENT_DIRECTION}">
62
63<div id="simple-wrap">
64 <a id="top" name="top" accesskey="t"></a>
65 <div id="page-body">
Note: See TracBrowser for help on using the repository browser.