Variant 1: href="/Magento-Agentur/Magento-Programmierung-Muenchen.php">Magento Block via XML
The block is defined in the file \app \design \frontend \Dein_Templatepack \Dein_Template \layout \page.xml. In our case, it is called "firstheader" and receives (optional) design specifications in the file
\app \design \frontend \Dein_Templatepack \Dein_Template \template \page \html \firstheader.phtml:
<block type="page/html" name="firstheader" as="firstheader" translate="label" template="page/html/firstheader.phtml">
<label>Header First Container>/label>
</block>
Variant 2: Magento Block via PHP
The block is created and output directly via PHP:
<?php
$block = $this->getLayout()->createBlock('core/template');
$block->setData(array('template' => 'page/html/firstheader.phtml'));
echo $block->toHtml();
?>
