20 lines
532 B
PHP
20 lines
532 B
PHP
<?php
|
|
// dsm($items, 'items');
|
|
?>
|
|
<section class="materiobase-contactops-materials">
|
|
<?php if($count): ?>
|
|
<p class="materials-infos"><?php print $materials_infos; ?></p>
|
|
<div class="actuality-items">
|
|
<?php $entity_view = entity_view('node', $items, $view_mode); ?>
|
|
<?php print render($entity_view); ?>
|
|
</div>
|
|
<div class="pager">
|
|
<?php print $pager; ?>
|
|
</div>
|
|
<?php else : ?>
|
|
<div class="materials-no-items">
|
|
<h2><?php print t('There is now materials for now.');?></h2>
|
|
</div>
|
|
<?php endif ;?>
|
|
</section>
|