Добрый день!
Я создала шаблон для Joomla 1.6, он успешно загрузился, но одна из позиций не работает ("cont"), и вместо оформления выводится чистый лист. В чём может быть загвоздка? Вот
index.php:
<!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/simple2/css/template.css type="text/css" />
</head>
<body>
<div class="container">
<div class="top">
<p class="sitename">
<jdoc:include type="modules" name="top" style="" />
</p>
</div>
<div class="left">
<jdoc:include type="modules" name="left" style="" />
</div>
<div>
<jdoc:include type="modules" name="cont" style="" />
</div>
</div>
</body>
</html>
и templateDetails.xml:<?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">
<extension version="1.6" type="template" client="site">
<name>simple2</name>
<version>1.6.0</version>
<creationDate>28/1/2011</creationDate>
<author>me</author>
<authorEmail></authorEmail>
<authorUrl></authorUrl>
<copyright></copyright>
<license></license>
<description></description>
<files>
<filename>index.php</filename>
<filename>index.html</filename>
<filename>templateDetails.xml</filename>
<filename>images/header.jpg</filename>
<filename>css/template.css</filename>
</files>
<positions>
<position>left</position>
<position>top</position>
<position>cont</position>
</positions>
</extension>