|
Revision 1075, 1.3 KB
(checked in by moo, 10 months ago)
|
|
htdocs: adds width/height for logo to take up space before loaded
|
-
Property svn:eol-style set to
native
|
| 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"> |
|---|
| 3 | <head> |
|---|
| 4 | <meta http-equiv="X-UA-Compatible" content="IE=6" /> |
|---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['config']['charset']; ?>" /> |
|---|
| 6 | <meta http-equiv="Content-Language" content="<?php echo $GLOBALS['config']['lang']; ?>" /> |
|---|
| 7 | <script type="text/javascript" src="tablesort.js"></script> |
|---|
| 8 | |
|---|
| 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 sprintf("XCache %s", $xcache_version = defined('XCACHE_VERSION') ? XCACHE_VERSION : ''); ?> - <?php echo ucfirst($GLOBALS['module']); ?></title> |
|---|
| 12 | </head> |
|---|
| 13 | |
|---|
| 14 | <body> |
|---|
| 15 | <div id="header"> |
|---|
| 16 | <div id="banner"> |
|---|
| 17 | <a href="http://xcache.lighttpd.net/" target="_blank"><img src="../common/xcache.png" id="logo" width="175" height="51" /> |
|---|
| 18 | <?php echo $xcache_version; ?> - <?php echo ucfirst($GLOBALS['module']); ?> |
|---|
| 19 | </a> |
|---|
| 20 | </div> |
|---|
| 21 | <div id="nav"> |
|---|
| 22 | <div id="mainnav"> |
|---|
| 23 | <?php echo mainnav(); ?> |
|---|
| 24 | </div> |
|---|
| 25 | <div id="subnav" class="switcher"> |
|---|
| 26 | <?php echo subnav(); ?> |
|---|
| 27 | </div> |
|---|
| 28 | </div> |
|---|
| 29 | </div> |
|---|
| 30 | <div id="headerbase"> </div> |
|---|
| 31 | <div id="main"> |
|---|