- Timestamp:
- 2012-07-29T04:34:23Z (6 years ago)
- Location:
- trunk/htdocs/common
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/common/common.css
r1069 r1073 38 38 #header #banner { 39 39 font: 32px/51px serif; 40 padding-left: 10px;41 40 color: white; 42 41 font-family: "arial", serif; 42 } 43 #header #banner a { 44 color: white; 45 } 46 #header #banner #logo { 47 display: block; 48 float: left; 49 padding-right: 5px; 43 50 } 44 51 #header #mainnav { -
trunk/htdocs/common/header.tpl.php
r1068 r1073 9 9 <link rel="stylesheet" type="text/css" href="../common/common.css" /> 10 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>11 <title><?php echo sprintf("XCache %s", $xcache_version = defined('XCACHE_VERSION') ? XCACHE_VERSION : ''); ?> - <?php echo ucfirst($GLOBALS['module']); ?></title> 12 12 </head> 13 13 14 14 <body> 15 15 <div id="header"> 16 <div id="banner"><?php echo $title; ?></div> 16 <div id="banner"> 17 <a href="http://xcache.lighttpd.net/" target="_blank"><img src="../common/xcache.png" id="logo" /> 18 <?php echo $xcache_version; ?> - <?php echo ucfirst($GLOBALS['module']); ?> 19 </a> 20 </div> 17 21 <div id="nav"> 18 22 <div id="mainnav">
Note: See TracChangeset
for help on using the changeset viewer.