<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mechanix</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mechanix"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Mechanix"/>
	<updated>2026-07-01T01:12:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Setting_up_a_directory_structure&amp;diff=7643</id>
		<title>Setting up a directory structure</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Setting_up_a_directory_structure&amp;diff=7643"/>
		<updated>2008-06-06T14:06:20Z</updated>

		<summary type="html">&lt;p&gt;Mechanix: case matters&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To make the most basic template, create a new folder in the &amp;quot;templates&amp;quot; folder. Name this folder after your template i.e. &amp;quot;mynewtemplate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Using a text editor (or dedicated html/php/xml/css editor such as dreamweaver) create the files &amp;quot;index.php&amp;quot;, &amp;quot;templateDetails.xml&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To keep things organised, make 2 new folders called &amp;quot;images&amp;quot; and &amp;quot;css&amp;quot;. Insided the &amp;quot;css&amp;quot; folder create a file called &amp;quot;css.css&amp;quot;&lt;br /&gt;
&lt;br /&gt;
This is the most basic practical setup. Theoretically, the css could be missed out but if you place the styling information within your &amp;quot;index.php&amp;quot; it will bloat the size of webpages and give a poor user experience.&lt;/div&gt;</summary>
		<author><name>Mechanix</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_templateDetails.xml_file&amp;diff=7642</id>
		<title>Creating a basic templateDetails.xml file</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_basic_templateDetails.xml_file&amp;diff=7642"/>
		<updated>2008-06-06T14:05:24Z</updated>

		<summary type="html">&lt;p&gt;Mechanix: case matters&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &amp;lt;tt&amp;gt;templateDetails.xml&amp;lt;/tt&amp;gt; file is essential. Without it, your template won&#039;t be seen by Joomla!. The file holds key &amp;quot;metadata&amp;quot; about the template. &lt;br /&gt;
&lt;br /&gt;
Lets look at an example:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE install PUBLIC &amp;quot;-//Joomla! 1.5//DTD template 1.0//EN&amp;quot;&lt;br /&gt;
 &amp;quot;http://dev.joomla.org/xml/1.5/template-install.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;install version=&amp;quot;1.5&amp;quot; type=&amp;quot;template&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;name&amp;gt;mynewtemplate&amp;lt;/name&amp;gt;&lt;br /&gt;
	&amp;lt;creationDate&amp;gt;2008-05-01&amp;lt;/creationDate&amp;gt;&lt;br /&gt;
	&amp;lt;author&amp;gt;John Doe&amp;lt;/author&amp;gt;&lt;br /&gt;
	&amp;lt;authorEmail&amp;gt;john@example.com&amp;lt;/authorEmail&amp;gt;&lt;br /&gt;
	&amp;lt;authorUrl&amp;gt;http://www.example.com&amp;lt;/authorUrl&amp;gt;&lt;br /&gt;
	&amp;lt;copyright&amp;gt;John Doe 2008&amp;lt;/copyright&amp;gt;&lt;br /&gt;
	&amp;lt;license&amp;gt;GNU/GPL&amp;lt;/license&amp;gt;&lt;br /&gt;
	&amp;lt;version&amp;gt;1.0.2&amp;lt;/version&amp;gt;&lt;br /&gt;
	&amp;lt;description&amp;gt;My New Template&amp;lt;/description&amp;gt;&lt;br /&gt;
	&amp;lt;files&amp;gt;&lt;br /&gt;
		&amp;lt;filename&amp;gt;index.php&amp;lt;/filename&amp;gt;&lt;br /&gt;
		&amp;lt;filename&amp;gt;templateDetails.xml&amp;lt;/filename&amp;gt;&lt;br /&gt;
		&amp;lt;filename&amp;gt;template_thumbnail.png&amp;lt;/filename&amp;gt;&lt;br /&gt;
		&amp;lt;filename&amp;gt;images/background.png&amp;lt;/filename&amp;gt;&lt;br /&gt;
		&amp;lt;filename&amp;gt;css/css.css&amp;lt;/filename&amp;gt;&lt;br /&gt;
	&amp;lt;/files&amp;gt;&lt;br /&gt;
	&amp;lt;positions&amp;gt;&lt;br /&gt;
		&amp;lt;position&amp;gt;breadcrumb&amp;lt;/position&amp;gt;&lt;br /&gt;
		&amp;lt;position&amp;gt;left&amp;lt;/position&amp;gt;&lt;br /&gt;
		&amp;lt;position&amp;gt;right&amp;lt;/position&amp;gt;&lt;br /&gt;
		&amp;lt;position&amp;gt;top&amp;lt;/position&amp;gt;&lt;br /&gt;
		&amp;lt;position&amp;gt;user1&amp;lt;/position&amp;gt;&lt;br /&gt;
		&amp;lt;position&amp;gt;user2&amp;lt;/position&amp;gt;&lt;br /&gt;
		&amp;lt;position&amp;gt;user3&amp;lt;/position&amp;gt;&lt;br /&gt;
		&amp;lt;position&amp;gt;user4&amp;lt;/position&amp;gt;&lt;br /&gt;
		&amp;lt;position&amp;gt;footer&amp;lt;/position&amp;gt;&lt;br /&gt;
	&amp;lt;/positions&amp;gt;&lt;br /&gt;
&amp;lt;/install&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
So, as you can see, we have a set of information between markup tags ( the &amp;amp;lt;thing&amp;gt; ). Your best approach is to cut and paste this into your &amp;quot;templateDetails.xml&amp;quot; file and change the relevant bits (such as &amp;lt;name&amp;gt; &amp;lt;author&amp;gt; ).&lt;br /&gt;
&lt;br /&gt;
The &amp;amp;lt;files&amp;gt; part should contain all the files that you use - you possibly don&#039;t know what they are called yet - don&#039;t worry update it later.&lt;br /&gt;
&lt;br /&gt;
Leave the positions as they are - these are a common set so you will be able to switch easily from the standard templates.&lt;/div&gt;</summary>
		<author><name>Mechanix</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J1.5:To_log_in_to_the_Back-end&amp;diff=7640</id>
		<title>J1.5:To log in to the Back-end</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J1.5:To_log_in_to_the_Back-end&amp;diff=7640"/>
		<updated>2008-06-06T13:42:58Z</updated>

		<summary type="html">&lt;p&gt;Mechanix: New page: We&amp;#039;ll assume you have a Joomla site at http://server.name/joomla/ To log in to the back-end you thus have to navigate to http://server.name/joomla/administrator/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We&#039;ll assume you have a Joomla site at http://server.name/joomla/&lt;br /&gt;
To log in to the back-end you thus have to navigate to http://server.name/joomla/administrator/&lt;/div&gt;</summary>
		<author><name>Mechanix</name></author>
	</entry>
</feed>