Also, ich poste hier mal den Code:
Code:
<?php
/*
Joomla templates by Joomladesigns.co.uk
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
define( 'YOURBASEPATH', dirname(__FILE__) );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<jdoc:include type="head" />
<!--[if lte IE 6]>
<style type="text/css">
#main_body ul li { behavior: url(<?php echo $this->baseurl; ?>/templates/<?php echo $this->template ?>/css/iepngfix.htc) }
</style>
<script defer type="text/javascript" src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template ?>/js/pngfix.js"></script>
<![endif]-->
<link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template ?>/css/template_css.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template ?>/js/fx_styles.js"></script>
<script type="text/javascript" src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template ?>/js/accordion.js"></script>
<?php
// *************************************************
//
// Template Parameters
//
// *************************************************
$h1 = $this->params->get("logo");
$linked_h1 = ($this->params->get("logoLinked", 1) == 0)?"false":"true";
$h1_title = $this->params->get("logoTitle");
$h2_motto = $this->params->get("logoMotto");
// Please do NOT change this unless you know what you doing.
$template_path = $this->baseurl.'/templates/'.$this->template; // template path
$default_font = "default";
// **************************************************
?>
</head>
<body>
<div id="top">
<div id="top_wrap">
<div id="title">
<h1 id="logo"><img src="<?php echo $template_path;?>/images/logo.png" alt="your Logo" title="your Logo" border="0" /></h1>
<?php if($h1=='image') { ?>
<?php if($linked_h1) { ?>
<h1><a href="index.php"><img src="<?php echo $template_path;?>/images/yourlogo.png" alt="yourlogo" title="your logo" border="0" /></a></h1>
<?php } else { ?>
<h1><img src="<?php echo $template_path;?>/images/yourlogo.png" alt="your logo" title="your logo" border="0" /></h1>
<?php } ?>
<h2><img src="<?php echo $template_path;?>/images/h2_motto.png" alt="<?php echo $h2_motto; ?>" title="<?php echo $h2_motto; ?>" border="0" /></h2>
<?php } else if ($h1=='text') { ?>
<?php if($linked_h1) { ?>
<a href="index.php">
<h1><?php echo $h1_title; ?></h1>
</a>
<?php } else { ?>
<h1><?php echo $h1_title; ?></h1>
<?php }?>
<h2><?php echo $h2_motto; ?></h2>
<?php } ?>
</div>
<?php if ($this->countModules( 'user3' )) : ?>
<div id="menu"><div id="uls"><jdoc:include type="modules" name="user3" style="xhtml" /></div>
<?php endif; ?>
</div>
</div>
</div>
<div id="body_top">
<div id="body_bot">
<div id="content">
<div id="main">
<div id="left_col">
<jdoc:include type="modules" name="left" style="xhtml" />
</div>
<?php if($this->countModules('left and right')) : ?>
<div id="main_content">
<?php if ($this->countModules( 'banner' )) : ?>
<div id="banner"><jdoc:include type="modules" name="banner" style="raw" /></div>
<?php endif; ?>
<div id="main_body">
<jdoc:include type="message" />
<jdoc:include type="component" />
</div>
</div>
<div id="right_col">
<jdoc:include type="modules" name="right" style="xhtml" />
</div>
<?php else : ?>
<div id="main_content2">
<?php if ($this->countModules( 'banner' )) : ?>
<div id="banner"><jdoc:include type="modules" name="banner" style="raw" /></div>
<?php endif; ?>
<div id="main_body2">
<jdoc:include type="message" />
<jdoc:include type="component" />
</div>
</div>
<?php endif; ?>
<div class="both"><!-- --></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>Copyright © <a href="http://www.ChangeYourDomainNameHere.com">Add Your Footer Text
Here</a> 2006-2008 All rights reserved <br />
<a title="Joomla Templates" href="http://www.joomladesigns.co.uk">Joomla Templates By Joomladesigns
</a> </p>
</div>
<jdoc:include type="modules" name="debug" />
</body>
</html>
Ist noch der originale Code.