|
Revision 1068, 1.1 KB
(checked in by moo, 10 months ago)
|
|
htdocs: blue skin
|
-
Property svn:eol-style set to
native
|
| Rev | Line | |
|---|
| [530] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| [371] | 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 3 | <head> |
|---|
| [1068] | 4 | <meta http-equiv="X-UA-Compatible" content="IE=6" /> |
|---|
| [1053] | 5 | <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['config']['charset']; ?>" /> |
|---|
| [1068] | 6 | <meta http-equiv="Content-Language" content="<?php echo $GLOBALS['config']['lang']; ?>" /> |
|---|
| [1053] | 7 | <script type="text/javascript" src="tablesort.js"></script> |
|---|
| [371] | 8 | |
|---|
| [1053] | 9 | <link rel="stylesheet" type="text/css" href="../common/common.css" /> |
|---|
| 10 | <link rel="stylesheet" type="text/css" href="<?php echo $GLOBALS['module']; ?>.css" /> |
|---|
| 11 | <title><?php echo $title = sprintf("XCache %s", $xcache_version = defined('XCACHE_VERSION') ? XCACHE_VERSION : '') . " - " . ucfirst($GLOBALS['module']); ?></title> |
|---|
| [371] | 12 | </head> |
|---|
| 13 | |
|---|
| 14 | <body> |
|---|
| [1068] | 15 | <div id="header"> |
|---|
| 16 | <div id="banner"><?php echo $title; ?></div> |
|---|
| 17 | <div id="nav"> |
|---|
| 18 | <div id="mainnav"> |
|---|
| 19 | <?php echo mainnav(); ?> |
|---|
| 20 | </div> |
|---|
| 21 | <div id="subnav" class="switcher"> |
|---|
| 22 | <?php echo subnav(); ?> |
|---|
| 23 | </div> |
|---|
| 24 | </div> |
|---|
| 25 | </div> |
|---|
| 26 | <div id="headerbase"> </div> |
|---|
| 27 | <div id="main"> |
|---|