33 lines
1.7 KiB
PHP
33 lines
1.7 KiB
PHP
<?= $this -> settings['newsletter_header'] ? $this -> settings['newsletter_header'] : '<p style="text-align: center;">--- brak zdefiniowanego nagłówka ---</p>';?>
|
|
<? if ( is_array( $this -> template ) ):?>
|
|
<?= $this -> template['text']?>
|
|
<? endif;?>
|
|
<? if ( is_array( $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'] );?>
|
|
<div style="padding: 10px; background: #F1F1F1; margin-bottom: 10px">
|
|
<?
|
|
$article['language']['seo_link'] ? $url = $article['language']['seo_link'] : $url = 'a-' . $article['id'] . '-' . \S::seo( $article['language']['title'] );
|
|
?>
|
|
<a href="http://<?= $_SERVER['SERVER_NAME'];?>/<?= $url;?>" title="<?= $article['language']['title'];?>" style="margin-bottom: 10px; display: block; font-size: 14px; color: #5b7fb1; font-weight: 600;">
|
|
<?= $article['language']['title'];?>
|
|
</a>
|
|
<div>
|
|
<?
|
|
if ( $article['language']['entry'] )
|
|
echo $article['language']['entry'];
|
|
else
|
|
echo $article['language']['text'];
|
|
?>
|
|
</div>
|
|
<div style="clear: both;"></div>
|
|
</div>
|
|
<? endforeach;?>
|
|
<? else:?>
|
|
<? if ( $this -> dates ):?>
|
|
<div style="padding: 10px; background: #F1F1F1; margin-bottom: 10px; text-align: center;">
|
|
--- brak artykułów w danym okresie ---
|
|
</div>
|
|
<? endif;?>
|
|
<? endif;?>
|
|
<?= $this -> settings['newsletter_footer_2'] ? $this -> settings['newsletter_footer_2'] : '<p style="text-align: center;">--- brak zdefiniowanej stopki cz. 2 ---</p>';?>
|