Files
inwestprofil.sk/templates_user/articles/articles-miniatures.php
2025-05-13 22:30:49 +02:00

10 lines
220 B
PHP

<div class="row">
<?php
if ( is_array( $this -> articles ) ) foreach ( $this -> articles as $article )
{
$tpl = new \Tpl;
$tpl -> article = $article;
echo $tpl -> render( 'articles/article-miniature' );
}
?>
</div>