Joomla! XML File example
Here is a sample model of Joomla XML file, copy and edit it as you want.
<?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>templateName</name> <creationDate>09/02/2012</creationDate> <author>Author Name</author> <authorEmail>support@youremail.com</authorEmail> <authorUrl>http://www.yourwebsite.com</authorUrl> <copyright>Copyright (C) 2011 Your Company. All rights reserved.</copyright> <license>GNU General Public License version 2 or later; see LICENSE.txt</license> <version>1.6.0</version> <description>Custom Template</description> <files> <folder>html</folder> <folder>images</folder> <folder>css</folder> <filename>favicon.ico</filename> <filename>index.html</filename> <filename>index.php</filename> <filename>template_thumbnail.png</filename> </files> <positions> <position>header</position> <position>menu</position> <position>left</position> <position>right</position> <position>footer</position> </positions> </extension> |