Witam

Moim kolejnym problemem jest tworzenie szablonu w Joomla 1.6.

tworze folder echo w templates i tam dwa pliki detal i index
<?xml version=”1.0” encoding=”utf-8”?>
<!DOCTYPE install PUBLIC „-//Joomla! 1.6//DTD template 1.0//EN”
„http://www.joomla.org/xml/dtd/1.6/template-install.dtd”>
<install version=”1.6” type=”template”>
<name>Echo</name>
<creationDate>1/10/10</creationDate>
<author>Barrie North</author>
<authorEmail>contact@compassdesigns.net</authorEmail>
<authorUrl>http://www.compassdesigns.net</authorUrl>
<copyright>Copyright 2005 – 2010 Barrie North</copyright>
<license>GPL</license>
<version>1.6.0</version>
<description>The first of 3 tutorial templates from Joomla 1.6 – A
User’s Guide</description>
<files>
<filename>index.php</filename>
<filename>templateDetails.xml</filename>
</files>
<positions>
<position>breadcrumbs</position>
<position>left</position>
<position>right</position>
<position>top</position>
<position>footer</position>
<position>debug</position>
</positions>
</install>
<?php
/**
* @copyright Copyright (C) 2005 – 2010 Barrie North.
* @license GPL
*/
defined(‘_JEXEC’) or die;
$app = JFactory::getApplication();
?>
<!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” />
<link rel=”stylesheet” href=”<?php echo $this->baseurl ?>/templates/system/css/system.css” type=”text/css” />
<link rel=”stylesheet” href=”<?php echo $this->baseurl ?>/templates/system/css/general.css” type=”text/css” />
<link rel=”stylesheet” href=”<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css” type=”text/css” />
</head>
<body>
<?php echo $app->getCfg(‘sitename’);?><br />
<jdoc:include type=”modules” name=”top” />
<jdoc:include type=”modules” name=”left” />
<jdoc:include type=”modules” name=”breadcrumbs” />
<jdoc:include type=”component” />
<jdoc:include type=”modules” name=”right” />
<jdoc:include type=”modules” name=”footer” />
<jdoc:include type=”modules” name=”debug” />
</body>
</html>
po zapisaniu w zapleczu nie wyświetla mi tego szablonu co jest?, szukam na googlach ale nic nic nie ma o tworzeniu szablonów w joomli 1.6 czy coś jeszcze trzeba ustawić aby działało?