Files
cmsPRO/templates_user/articles/news-list.php
2026-02-22 21:59:33 +01:00

14 lines
1.0 KiB
PHP

<ul class="news-list">
<? if ( \S::is_array_fix( $this -> articles ) ): foreach ( $this -> articles as $article ):?>
<? $article['language']['seo_link'] ? $url = $article['language']['seo_link'] : $url = 'a-' . $article['id'] . '-' . \S::seo( $article['language']['title'] );?>
<li>
<div class="news-list-img">
<? $main_img = \front\factory\Articles::get_image($article); ?>
<img src="<?= $main_img; ?>" alt="">
</div>
<a href="/<? if ( \S::get_session( 'current-lang' ) != \front\factory\Languages::default_language( \S::get_domain( $_SERVER['HTTP_HOST'] ) ) ) echo \S::get_session( 'current-lang' ) . '/';?><?= $url;?>" title="<?= $article['language']['title'];?>" <? if ( $article['language']['noindex'] ):?>rel="nofollow"<? endif;?>><?= $article['language']['title'];?></a>
<? if ($article['show_date_add'])
echo '<div class="date-add">' . '<i class="fa fa-calendar-o "></i>' . date('Y-m-d', strtotime($article['date_add'])) . '</div>';?>
</li>
<? endforeach; endif;?>
</ul>