Files
globelus.pl/templates_user/articles/articles-entries.php
2024-11-11 15:28:20 +01:00

11 lines
251 B
PHP

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