Hallo,
bei meiner Template-Suche für die neue 1.5er Version von Joomla hatte ich nicht viel Erfolg bis jetzt. Nun habe ich aber ein tolles Layout für die 1.0er Version gefunden und gelesen das man die 1.0er Templates auf 1.5 "upgraden" kann.
Die Methode ist hier schon in etwa beschrieben >>> http://www.joomla.de/content/view/214/17/
Aber irgendwie hats noch nicht geklappt so richtig, kann mir jemand helfen bzw. die Codes so umschreiben das das Template sich auf 1.5 installieren lässt?
Die .xml Datei die zur Installation benötigt wird habe ich schon umgeschrieben, fehlt nur noch die index.php.
Hier ist der Original-Quelltext...
ZitatAlles anzeigen<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
?>
<!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" lang="<?php echo _LANGUAGE; ?>">
<head>
<?php
if ( $my->id ) {
initEditor();
}
mosShowHead();
?>
<link href="<?php echo $mosConfig_live_site;?>/templates/<?php echo $mainframe->getTemplate(); ?>/css/template_css.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="<?php echo $mosConfig_live_site;?>/images/favicon.ico" />
</head>
<body id="page_bg">
<div id="container">
<div class="logo"></div>
<div class="search_outer">
<div class="search_inner">
<div align="right">
<?php mosLoadModules ( 'user4' ); ?>
</div>
</div>
</div>
<div id="navbar"><div class="nav_inner">
<?php mosLoadModules ( 'top' ); ?>
</div>
</div>
<div id="wrapper" class="clearfix">
<div id="mainbody">
<?php if (mosCountModules('user1') mosCountModules('user2')) { ?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<?php if (mosCountModules('user1')) { ?><td width="50%">
<?php mosLoadModules('user1',-2); ?></td>
<?php } ?>
<?php if (mosCountModules('user1') && mosCountModules('user2')) { ?>
<td class="greyline"></td>
<?php } ?>
<?php if (mosCountModules('user2')) { ?><td width="50%">
<?php mosLoadModules('user2',-2); ?></td>
<?php } ?>
</tr>
</table>
<?php } ?>
<?php if (mosCountModules('user1') && mosCountModules('user2')) { ?>
<div class="maindivider"></div>
<?php } ?>
<?php mosMainBody(); ?></div>
<div id="leftcol"><?php mosLoadModules ( 'left' ); ?></div>
</div>
<div class="bottom">
<div class="botleft"></div>
<div class="botright"></div>
</div>
</div>
<div class="designer"><?php include($mosConfig_absolute_path."/templates/" . $mainframe->getTemplate() . "/js/template.css.php"); ?></div>
</body>
</html>
[/quote]