i have a problem with the output of a blog view. this would be quite minimal and solve with uikit.
the list type looks like this.
<?php
defined( '_JEXEC' ) or die;
// -- Initialize
require_once dirname(__FILE__).'/config.php';
$cck = CCK_Rendering::getInstance( $this->template );
if ( $cck->initialize() === false ) { return; }
$items = $cck->getItems();
$html = '';
$id_class = $cck->id_class;
$count = count( $items );
echo '<div><div data-uk-grid-margin="" data-uk-grid-match="{target:\'.cck_stellenname\'}">';
if ( $count ) {
foreach ( $items as $item ) {
$item;
}
}
//echo '.( $items ).';
//echo '.$cck->$middle_display( $item )';
echo '</div></div>';
$cck->addScriptDeclaration( $js );
$cck->finalize();
?>
but the items are not given out. And I just do not see the error. Can you help me.