forked from schmidt1024/Blank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
templateDetails.xml
executable file
·92 lines (85 loc) · 4.13 KB
/
templateDetails.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install PUBLIC "-//Joomla! 2.5//DTD template 1.0//EN" "http://www.joomla.org/xml/dtd/2.5/template-install.dtd">
<extension version="2.5" type="template" method="upgrade">
<name>templatename</name><!-- name the template -->
<creationDate>xxxx-xx-xx</creationDate><!-- the date your are beginn to code -->
<author>your name</author><!-- your name (oops, I repeat myself) -->
<copyright>Copyright © xxxx example.com</copyright><!-- for who you are coding -->
<authorEmail>[email protected]</authorEmail><!-- your email address -->
<authorUrl>http://www.example.com</authorUrl><!-- your url -->
<version>1.0.0</version><!-- give your template a number -->
<description><![CDATA[
<h1>templatename</h1>
<p><img src="../templates/templatename/template_preview.png" /></p>
<h2>Module positions</h2>
<ol>
<li>debug</li>
</ol>
<p>Created by <a href="http://www.example.com" target="_blank">your name | example.com</a>.</p>
]]></description><!-- change the description as you like -->
<files><!-- no need to change -->
<folder>css</folder>
<folder>html</folder>
<folder>images</folder>
<folder>js</folder>
<filename>apple-touch-icon-57x57.png</filename>
<filename>apple-touch-icon-72x72.png</filename>
<filename>apple-touch-icon-114x114.png</filename>
<filename>component.php</filename>
<filename>error.php</filename>
<filename>favicon.ico</filename>
<filename>index.php</filename>
<filename>offline.php</filename>
<filename>template_preview.png</filename>
<filename>template_thumbnail.png</filename>
<filename>templateDetails.xml</filename>
</files>
<languages folder="language"><!-- no need to change -->
<language tag="de-DE">de-DE.tpl_templatename.ini</language>
<language tag="en-GB">en-GB.tpl_templatename.ini</language>
<language tag="es-ES">es-ES.tpl_templatename.ini</language>
</languages>
<positions><!-- define the positions for modules here -->
<position>debug</position>
</positions>
<config><!-- no need to change -->
<fields name="params">
<fieldset name="basic">
<!-- MODERNIZR-->
<field name="modernizr" type="radio" default="1" label="TPL_TEMPLATENAME_PARAMETER_MODERNIZR_LABEL" description="TPL_TEMPLATENAME_PARAMETER_MODERNIZR_DESC">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
<field name="TPL_TEMPLATENAME_PARAMETER_MODERNIZR_DOC" type="spacer" hr="false" />
<field type="spacer" hr="true" />
<!-- TWITTER BOOTSTRAP-->
<field name="bootstrap" type="radio" default="0" label="TPL_TEMPLATENAME_PARAMETER_BOOTSTRAP_LABEL" description="TPL_TEMPLATENAME_PARAMETER_BOOTSTRAP_DESC">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
<field name="TPL_TEMPLATENAME_PARAMETER_BOOTSTRAP_DOC" type="spacer" hr="false" />
<field type="spacer" hr="true" />
<!-- Foundation Zurb-->
<field name="zurb" type="radio" default="0" label="TPL_TEMPLATENAME_PARAMETER_ZURB_LABEL" description="TPL_TEMPLATENAME_PARAMETER_ZURB_DESC">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
<field name="TPL_TEMPLATENAME_PARAMETER_ZURB_DOC" type="spacer" hr="false" />
<field type="spacer" hr="true" />
<!-- Foundation Zurb Icons -->
<field name="zurbicons" type="radio" default="0" label="TPL_TEMPLATENAME_PARAMETER_ZURBICONS_LABEL" description="TPL_TEMPLATENAME_PARAMETER_ZURBICONS_DESC">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
<field name="TPL_TEMPLATENAME_PARAMETER_ZURBICONS_DOC" type="spacer" hr="false" />
<field type="spacer" hr="true" />
<!-- PIE-->
<field name="pie" type="radio" default="1" label="TPL_TEMPLATENAME_PARAMETER_PIE_LABEL" description="TPL_TEMPLATENAME_PARAMETER_PIE_DESC">
<option value="0">JNO</option>
<option value="1">JYES</option>
</field>
<field name="TPL_TEMPLATENAME_PARAMETER_PIE_DOC" type="spacer" hr="false" />
</fieldset>
</fields>
</config>
</extension>