';
}
function template_main()
{
global $context, $settings, $options, $txt;
if (!empty($context['poll']))
{
echo '
', $txt['poll'], '
', $txt['poll_question'], ':
', $context['poll']['question'], '';
$options = 1;
foreach ($context['poll']['options'] as $option)
echo '
', $txt['option'], ' ', $options++, ': ', $option['option'], '
', $context['allow_poll_view'] ? $txt['votes'] . ': ' . $option['votes'] . '' : '', '
';
echo '
';
}
foreach ($context['posts'] as $post)
echo '
', $post['body'], '
';
}
function template_print_below()
{
global $context, $settings, $options;
echo '