Im using the following Smarty code:
{foreach from=$entries key=i item=topic} {if $topic.topic_style == question}
You could just use array_slice:
array_slice
{foreach $entries|@array_slice:0:10 as $topic} ... {/foreach}