$this -> article['language']['seo_link'] ? $url = $this -> article['language']['seo_link'] : $url = 'a-' . $this -> article['id'] . '-' . \S::seo( $this -> article['language']['title'] );
if ( $this -> article['show_title'] ):
?>
endif;
if ( $this -> article['show_date_add'] )
echo '
' . $lang['data-dodania'] . ': ' . $this -> article['date_add'] . '
' . $lang['data-modyfikacji'] . ': ' . $this -> article['date_modify'] . '
if ( $this -> article['language']['entry'] )
{
$content = $this -> article['language']['entry'];
$content = preg_replace( "/
![]()
]+\>/i", "", $content );
$content = preg_replace( "/
]*?>/", "", $content );
$content = preg_replace( "/[\n\r]/", " ", $content );
$content = mb_substr( $content, 0, 100, 'UTF-8' );
echo $content;
if ( $this -> article['language']['text'] )
$more = true;
}
else
{
echo $this -> article['language']['text'];
$more = false;
}
?>