Thank you for your answer!
I have created a new position "myposition" in templateDetails.xml:
<positions>
<position>logo</position>
...
<position>debug</position>
<position>myposition</position>
</positions>
Then the first problems:
- where do I find config.xml?
- in layouts/ there's no template.php and no module.php...
- I've did the code:
<?php if ($this['modules']->count('myposition')) : ?>
<section id="myposition">
<div class="grid-block">
<?php echo $this['modules']->render('myposition', array('layout'=>$this['config']->get('myposition'))); ?>
</div>
</section>
<?php endif; ?>
Where exactly I have to put it in template.php to obtain the effect I wrote?
- there's no /css/layouts.css file too...
Can you help me?