| TAG | Meaning |
|---|---|
| {{STYLES}} | is replaced with generated stylesheet tags (<link rel="stylesheet" />
) The folowing stylesheets are auto-loaded: "layout.css", "skin.css" and "print.css". If you want to add other stylesheets to your skin, use this syntax: <link media="screen" rel="stylesheet" /> |
| {{PATH}} | is the most used template tag. It is used when the script needs to build web paths to images, css or js files; this tag is replaced with the external root string that can be modified in the admin or at install time. |
| {{META}} | is replaced with meta tags like keywords, author etc. These meta tags can be modified in the admin settings tab. |
| {{SCRIPTS}} | The default js file auto-loaded by the application is "cart.js". If you want to include more js files, use this syntax: <script type="text/javascript" xsrc="{{PATH}}shop/scripts/js/<b>your_js_file</b>.js"></script> |
| {{TITLE}} | is replaced with the current page's title. |
| {{MODULE:XXXXXXXXXXX}} | tags are replaced with the content generated by each module in the application. Note that there are modules which can be inactive at a certain moment. For example, if the user is browsing to a view his cart's content, the cart module will be active, other modules might be inactive. These tags are replaced with the default content of the coresponding modules. |
| {{MODULE:CART}} | This tag is replaced with a small summary of the shopping cart. It is visible on every page. It's content is pulled out from the module.cart.small.tpl template file. |