diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2006-03-12 15:52:10 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-03-12 15:52:10 +0000 |
commit | f4cfd3665f7cf1ed96ce4c2eca03ac6854aae258 (patch) | |
tree | 60a7362769f8fed7ffd6f276760a34034ebc6bfa /phpBB/adm/style | |
parent | 1adfb39cbae433eccda37d50b7ed7a01bbabd4e3 (diff) | |
download | forums-f4cfd3665f7cf1ed96ce4c2eca03ac6854aae258.tar forums-f4cfd3665f7cf1ed96ce4c2eca03ac6854aae258.tar.gz forums-f4cfd3665f7cf1ed96ce4c2eca03ac6854aae258.tar.bz2 forums-f4cfd3665f7cf1ed96ce4c2eca03ac6854aae258.tar.xz forums-f4cfd3665f7cf1ed96ce4c2eca03ac6854aae258.zip |
Building the foundations for some later changes to the installer
This code doesn't actually do anything yet ;-)
git-svn-id: file:///svn/phpbb/trunk@5620 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style')
-rwxr-xr-x | phpBB/adm/style/install_footer.html | 25 | ||||
-rwxr-xr-x | phpBB/adm/style/install_header.html | 41 | ||||
-rwxr-xr-x | phpBB/adm/style/install_main.html | 5 |
3 files changed, 71 insertions, 0 deletions
diff --git a/phpBB/adm/style/install_footer.html b/phpBB/adm/style/install_footer.html new file mode 100755 index 0000000000..e46ca774c3 --- /dev/null +++ b/phpBB/adm/style/install_footer.html @@ -0,0 +1,25 @@ + + </div> + </div> + <span class="corners-bottom"><span></span></span> + </div> + </div> + + <!-- + We request you retain the full copyright notice below including the link to www.phpbb.com. + This not only gives respect to the large amount of time given freely by the developers + but also helps build interest, traffic and use of phpBB. If you (honestly) cannot retain + the full copyright we ask you at least leave in place the "Powered by phpBB" line, with + "phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our + forums may be affected. + + The phpBB Group : 2006 + // --> + + <div id="page-footer"> + Powered by phpBB {VERSION} © 2006 <a href="http://www.phpbb.com/">phpBB Group</a> + </div> +</div> + +</body> +</html>
\ No newline at end of file diff --git a/phpBB/adm/style/install_header.html b/phpBB/adm/style/install_header.html new file mode 100755 index 0000000000..ed53d149bd --- /dev/null +++ b/phpBB/adm/style/install_header.html @@ -0,0 +1,41 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}"> +<head> + +<meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" /> +<meta http-equiv="Content-Style-Type" content="text/css" /> +<meta http-equiv="imagetoolbar" content="no" /> +<!-- IF META -->{META}<!-- ENDIF --> +<title>{PAGE_TITLE}</title> + +<link href="../adm/style/admin.css" rel="stylesheet" type="text/css" media="screen" /> + +</head> + +<body> +<div id="wrap"> + <div id="page-header"> + <h1>{L_INSTALL_PANEL}</h1> + </div> + + <div id="page-body"> + <div id="tabs"> + <ul> + <!-- BEGIN t_block1 --> + <li<!-- IF t_block1.S_SELECTED --> id="activetab"<!-- ENDIF -->><a href="{t_block1.U_TITLE}"><span>{t_block1.L_TITLE}</span></a></li> + <!-- END t_block1 --> + </ul> + </div> + + <div class="panel"> + <span class="corners-top"><span></span></span> + <div id="content"> + <div id="menu"> + <ul> + <!-- BEGIN l_block1 --> + <li<!-- IF l_block1.S_SELECTED --> id="activemenu"<!-- ENDIF -->><a href="{l_block1.U_TITLE}"><span>{l_block1.L_TITLE}</span></a></li> + <!-- END l_block1 --> + </ul> + </div> + + <div id="main"> diff --git a/phpBB/adm/style/install_main.html b/phpBB/adm/style/install_main.html new file mode 100755 index 0000000000..983b6aa0c4 --- /dev/null +++ b/phpBB/adm/style/install_main.html @@ -0,0 +1,5 @@ +<!-- INCLUDE install_header.html --> + + <h2>{TITLE}</h2> + {BODY} +<!-- INCLUDE install_footer.html -->
\ No newline at end of file |