'."\n";
// add a drop shadow
echo '
'."\n";
// the main panel
echo '
'."\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();
// prefix ends here
}
// build the suffix only once
if(!isset($context['embedded']) || ($context['embedded'] == 'suffix')) {
// separator for text readers
echo '
'."\n";
// end of the main panel
echo ''."\n";
// the side panel
echo '
'."\n";
// display side content, including extra data
Page::side(TRUE);
// link to yacs if we are at the front page
if(($context['skin_variant'] == 'home') && is_callable(array('i18n', 's')))
echo Skin::build_box(NULL, '
'.sprintf(i18n::s('Powered by %s'), Skin::build_link(i18n::s('http://www.yetanothercommunitysystem.com/'), i18n::s('yacs'), 'external')).'
', 'extra');
// end of the side panel
echo '
'."\n";
// add a drop shadow
echo '
'."\n";
// separator for text readers
echo '
'."\n";
// end of the wrapper
echo '
'."\n";
// the footer panel comes after everything else
echo ''."\n";
// end of page
echo ''."\n"
.'