Files
inwestprofil.eu/templates_user/articles/articles-entries.php
Roman Pyrih 197675d958 first commit
2026-02-03 13:33:04 +01:00

18 lines
468 B
PHP

<div class="row">
<?
if ( is_array( $this -> articles ) ) foreach ( $this -> articles as $article )
{
if ( $article['password'] and !\S::get_session( 'article-' . $article['id'] . '-' . $article['password'] ) )
echo \front\view\Articles::password_view( [ 'article' => $article ] );
else
{
$tpl = new \Tpl;
$tpl -> page_id = $this -> page_id;
$tpl -> article = $article;
echo $tpl -> render( 'articles/article-entry' );
}
}
?>
</div>