@extends('site.layout.base') @section('content')
@include('site.page.block.content.news.menu') @if(count($news) > 0)
@include('site.page.block.content.news.preview', array('objnews' => $news[$indexstart], 'real_time' => true, 'force_preview_outside' => true))
@for($s = $indexstart + 1; $s < $indexend; $s++) @include('site.page.block.content.news.elenco', array('objnews' => $news[$s], 'real_time' => true)) @endfor
@include('site.page.block.pagination', array('nocenter' => true, 'base_url_pag' => url($section->path.'.html')))
@endif
@stop