我想为Joomla制作测试模板,但我无法安装它。我不知道为什么它不起作用。
我有css文件夹,images文件夹,index.php和templateDetails.xml。所以这是我的xml
<?xml version="1.0" encoding="utf-8"?>
<extension version="3.8" type="template">
<name>ts-melina</name>
<creationDate>2018-03-19</creationDate>
<author>Melina Gaul</author>
<authorEmail>gaul.melina@gmail.com</authorEmail>
<authorUrl>http://www.example.com</authorUrl>
<copyright>Melina Gaul 2018</copyright>
<license>GNU/GPL</license>
<version>1.0.0</version>
<description>Das offizielle Design von ts-melina</description>
<files>
<filename>index.php</filename>
<filename>templateDetails.xml</filename>
<folder>images</folder>
<folder>css</folder>
</files>
<positions>
<position>header</position>
<position>menu</position>
<position>cover</position>
<position>willkommen</position>
<position>angebote</position>
<position>socialmedia</position>
<position>leistung-1</position>
<position>leistung-2</position>
<position>leistung-3</position>
<position>siegel</position>
<position>footer</position>
</positions>
</extension>
这是我的index.php
<?php defined('_JEXEC') or die('Restricted access');?>
<!DOCTYPE html>
<html 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/<?php echo $this->template ?>/css/template.css" type="text/css" />
</head>
<body>
<div id="wrapper">
<header><jdoc:include type="modules" name="header" style="xhtml" /></header>
<footer><jdoc:include type="modules" name="footer" style="xhtml" /></footer>
</div><!--#wrapper-->
</body>
</html>
我写错了吗?或者我还需要什么。我把它做成Joomla的教程或文档,但我无法安装它。这非常重要,我很快就会需要它。