Skin tags

This is about the tags needed by the skin such as the tags relative to the navigation, to the css styles, ...

Those tags are defined in the skins/skinName/conf/tag.xml file.

<tags>
     <category id="MA_CATEGORY_1">
        <label i18n="false">Ma catégorie 1</label>
        <description i18n="false">Description de ma catégorie</description>
        <tag id="TAG_1" target="CONTENT">
           <label i18n="false">Tag 1</label>
           <description i18n="false">Description du tag 1</description>
        </tag>
        <tag id="TAG_2" target="CONTENT">
            <label i18n="false">Tag 2</label>
            <description i18n="false">Description du tag 2</description>
        </tag>
        <category id="SOUS_CATEGORY">
            <label i18n="false">Une sous catégorie</label>
            <description i18n="false">Description de la sous catégorie</description>
            <tag id="TAG_11" target="CONTENT">
                 <label i18n="false">Tag 1.1</label>
                 <description i18n="false">Description du tag 1.1</description>
            </tag>
        </category>
     </category>
     <category id="MA_CATEGORY_2">
        <label i18n="false">Ma catégorie 2</label>
        <description i18n="false">Description de ma catégorie</description>
        <tag id="TAG_22" target="PAGE">
            <label i18n="false">Tag 2</label>
       	    <description i18n="false">Description du tag 2</description>
        </tag>
     </category>
 </tags>
Back to top