8 lines
290 B
PHP
8 lines
290 B
PHP
<div class="row">
|
|
<? if ( is_array( $this -> articles ) ): foreach ( $this -> articles as $article ):
|
|
$tpl = new \Shared\Tpl\Tpl;
|
|
$tpl -> page_id = $this -> page_id;
|
|
$tpl -> article = $article;
|
|
echo $tpl -> render( 'articles/article-entry' );
|
|
endforeach; endif;?>
|
|
</div>
|