diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 21:12:08 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-23 21:12:08 +0000 |
commit | c0456fee32673d628882fad7307c4989e35db820 (patch) | |
tree | dbf9c432f414e9fba146d6c3f563a6f2e31f5217 /templates/header.inc | |
parent | 6224281f3c405b0f41c597d504273fe5c237d4ad (diff) | |
download | ampache-c0456fee32673d628882fad7307c4989e35db820.tar.gz ampache-c0456fee32673d628882fad7307c4989e35db820.tar.bz2 ampache-c0456fee32673d628882fad7307c4989e35db820.zip |
new theme, temp breaking of all other themes... will be fixed I swear also re-indexing of mysql tables
Diffstat (limited to 'templates/header.inc')
-rw-r--r-- | templates/header.inc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/templates/header.inc b/templates/header.inc index a6928b2b..542f556e 100644 --- a/templates/header.inc +++ b/templates/header.inc @@ -33,23 +33,22 @@ if (conf('use_rss')) { ?> <link rel="alternate" type="application/rss+xml" title="<?php echo conf('rss_main_title'); ?>" href="<?php echo $web_path; ?>/rss.php" /> <?php } ?> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo conf('site_charset'); ?>" /> -<?php require (conf('prefix') . '/templates/basestyle.inc.php'); show_template('style'); ?> <title><?php echo conf('site_title'); ?> - <?php echo $location['title']; ?></title> </head> <body> +<link rel="stylesheet" href="<?php echo $web_path; ?>/templates/default.css" type="text/css"> <script src="<?php echo $web_path; ?>/lib/general.js" language="javascript" type="text/javascript"></script> <script src="<?php echo $web_path; ?>/modules/kajax/ajax.js" language="javascript" type="text/javascript"></script> <div id="maincontainer"> <div id="topbar"><!-- This is the topbar row --> <div id="topbarleft"> <a href="http://www.ampache.org"> - <img class="pageheader" src="<?php echo $web_path; ?><?php echo conf('theme_path'); ?>/images/ampache.gif" border="0" title="Ampache: For the love of music" alt="Ampache: For the love of music" /> + <img src="<?php echo $web_path; ?><?php echo conf('theme_path'); ?>/images/ampache.gif" border="0" title="Ampache: For the love of music" alt="Ampache: For the love of music" /> </a> </div><!--End topbarleft --> <div id="topbarright"> <a href="http://www.ampache.org/index.php">Ampache v.<?php echo conf('version'); ?></a><br /> - <b><?php echo _("You are currently logged in as") . " " . $GLOBALS['user']->fullname; ?></b> - <br /> + <b><?php echo _('You are currently logged in as') . " " . $GLOBALS['user']->fullname; ?></b> </div> <!-- End topbarright --> </div><!-- End topbar --> <div id="sidebar"><!-- This is the sidebar --> |