= $article['language']['title'];?>
' . date( "d/m/Y", strtotime( $article['date_add'] ) ) . '
';
?>
$content = strip_tags($article[ 'language' ][ 'entry' ]);
if (strlen($content) > 100) {
// truncate string
$contentCut = substr($content, 0, 100);
$endPoint = strrpos($content, ' ');
//if the string doesn't contain any space then it will cut without word basis.
$content = $endPoint? substr($contentCut, 0, $endPoint) : substr($contentCut, 0);
$content .= '...';
}
echo $content;
?>
= $lang['Zobacz artykul'];?>