source: trunk/forum/adm/style/install_header.html

Last change on this file was 400, checked in by george, 16 years ago
  • Přidáno: Nové forum phpBB 3.
File size: 2.3 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<!-- IF META -->{META}<!-- ENDIF -->
10<title>{PAGE_TITLE}</title>
11
12<link href="../adm/style/admin.css" rel="stylesheet" type="text/css" media="screen" />
13
14<script type="text/javascript">
15// <![CDATA[
16
17/**
18* Set display of page element
19* s[-1,0,1] = hide,toggle display,show
20*/
21function dE(n, s, type)
22{
23 if (!type)
24 {
25 type = 'block';
26 }
27
28 var e = document.getElementById(n);
29 if (!s)
30 {
31 s = (e.style.display == '' || e.style.display == 'block') ? -1 : 1;
32 }
33 e.style.display = (s == 1) ? type : 'none';
34}
35
36// ]]>
37</script>
38
39</head>
40
41<body class="{S_CONTENT_DIRECTION}">
42<div id="wrap">
43 <div id="page-header">
44 <h1>{L_INSTALL_PANEL}</h1>
45 <p id="skip"><a href="#acp">{L_SKIP}</a></p>
46 <!-- IF S_LANG_SELECT -->
47 <form method="post" action="">
48 <fieldset class="nobg">
49 <label for="language">{L_SELECT_LANG}:</label>
50 {S_LANG_SELECT}
51 <input class="button1" type="submit" id="change_lang" name="change_lang" value="{L_CHANGE}" />
52 </fieldset>
53 </form>
54 <!-- ENDIF -->
55 </div>
56
57 <div id="page-body">
58 <div id="tabs">
59 <ul>
60 <!-- BEGIN t_block1 -->
61 <li<!-- IF t_block1.S_SELECTED --> id="activetab"<!-- ENDIF -->><a href="{t_block1.U_TITLE}"><span>{t_block1.L_TITLE}</span></a></li>
62 <!-- END t_block1 -->
63 </ul>
64 </div>
65
66 <div id="acp">
67 <div class="panel">
68 <span class="corners-top"><span></span></span>
69 <div id="content">
70 <div id="menu">
71 <ul>
72 <!-- BEGIN l_block1 -->
73 <li<!-- IF l_block1.S_SELECTED --> id="activemenu"<!-- ENDIF -->><a href="{l_block1.U_TITLE}"><span>{l_block1.L_TITLE}</span></a></li>
74 <!-- END l_block1 -->
75 <!-- BEGIN l_block2 -->
76 <li<!-- IF l_block2.S_SELECTED --> id="activemenu"<!-- ENDIF -->><span<!-- IF l_block2.S_COMPLETE --> class="completed"<!-- ENDIF -->>{l_block2.L_TITLE}</span></li>
77 <!-- END l_block2 -->
78 </ul>
79 </div>
80
81 <div id="main" class="install-body">
Note: See TracBrowser for help on using the repository browser.