Example #1
0
}
// end of the header panel
echo '</div>' . "\n";
// the main panel
echo '<div id="main_panel">' . "\n";
// display bread crumbs if not at the front page; if not defined, only the 'Home' link will be displayed
if ($context['skin_variant'] != 'home') {
    Page::bread_crumbs(0);
}
// display main content
Page::content();
// end of the main panel
echo '</div>' . "\n";
// the side panel
echo '<div id="side_panel">' . "\n";
// display side content
Page::side();
// end of the side panel
echo '</div>' . "\n";
// the footer panel comes after everything else
echo '<div id="footer_panel">';
// display standard footer
Page::footer();
// end of the footer panel
echo '</div>' . "\n";
// end of the wrapper
echo '</div>' . "\n";
// insert the dynamic footer, if any, including inline scripts
echo $context['page_footer'];
// end of page
echo '</body>' . "\n" . '</html>';