' . $context['page_index'] . '
';
if (empty($context['posts']))
echo '
#', $post['counter'], '
', $post['board']['link'], ' / ', $post['link'], '
', $txt['last_poster'], ' ', $post['poster']['link'], ' - ', $post['time'], '
', $post['message'], '
';
// Post options
template_quickbuttons($post['quickbuttons'], 'recent');
echo '
';
}
echo '
', $context['page_index'], '
';
}
/**
* Template for showing unread posts
*/
function template_unread()
{
global $context, $txt, $scripturl, $modSettings, $board_info;
// User action pop on mobile screen (or actually small screen), this uses responsive css does not check mobile device.
if (!empty($context['recent_buttons']))
echo '
';
echo '
', (!empty($board_info['name']) ? $board_info['name'] . ' - ' : '') . $context['page_title'], '
';
if ($context['showCheckboxes'])
echo '
';
echo '
';
if (empty($context['no_topic_listing']))
template_topic_legend();
}
/**
* Template for showing unread replies (eg new replies to topics you've posted in)
*/
function template_replies()
{
global $context, $txt, $scripturl, $modSettings, $board_info;
// User action pop on mobile screen (or actually small screen), this uses responsive css does not check mobile device.
if (!empty($context['recent_buttons']))
echo '
';
echo '
', (!empty($board_info['name']) ? $board_info['name'] . ' - ' : '') . $context['page_title'], '
';
if ($context['showCheckboxes'])
echo '
';
echo '
';
if (empty($context['no_topic_listing']))
template_topic_legend();
}
?>