Files
roximplast.pl/templates_user/articles/articles-miniatures.php
2026-05-23 21:02:06 +02:00

10 lines
229 B
PHP

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