Files
inwestprofil.eu/templates_user/articles/articles-miniatures.php
Roman Pyrih 197675d958 first commit
2026-02-03 13:33:04 +01: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>