{assign var="max" value=$section.max|default:10}> <{assign var="autofill" value=$section.autofill|default:false}> <{if $section.type == 'popular'}> <{assign var="products" value=$webshop->getPopularProducts()}> <{elseif $section.type == 'newest'}> <{assign var="products" value=$webshop->getOnlineProducts()}> <{elseif $section.type == 'sold'}> <{assign var="products" value=$webshop->getPopularProducts()}> <{elseif $section.type == 'category'}> <{if $section.selector}> <{assign var="category" value=$webshop->getCategoryByTag($section.selector)}> <{if $category}> <{assign var="products" value=$category->getOnlineProducts()}> <{/if}> <{/if}> <{elseif $section.type == 'landing_page'}> <{if $section.selector}> <{assign var="landing_page" value=$webshop->getLandingPageByTag($section.selector)}> <{if $landing_page}> <{assign var="products" value=$landing_page->getProducts()}> <{/if}> <{/if}> <{/if}>