X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/f547127c637332119b42329ca78d0e1a659d9739..HEAD:/widget/nieuws.php diff --git a/widget/nieuws.php b/widget/nieuws.php index 73258b2..10e31a3 100644 --- a/widget/nieuws.php +++ b/widget/nieuws.php @@ -1,6 +1,6 @@ \n"; @@ -19,7 +19,16 @@ function shownews($input, $limit = 1000) '

%s %s

', $article->link, $article->title, showdate($article->dateparts) ); - print $article->story; + if ($abbr) { + print '

' . $article->teaser; + if ($article->story != "

{$article->teaser}

\n\n") { + print ' (Meer op de site)'; + } + print "

\n"; + } + else { + print $article->story; + } print ''; print "\n\n"; @@ -44,7 +53,7 @@ function printtoc($input, $class = FALSE) $html .= sprintf(' %s', showdate($dateparts)); if ($class == 'gallery' and $article->img) { $html = "
$html
"; - $html = sprintf('', $article->thumb(200)) . $html; + $html = sprintf('', $article->thumb(200)) . $html; } $html = sprintf('%s', $article->link, $html); print "
  • $html
  • \n"; @@ -73,6 +82,6 @@ if (@$Page->place['view'] === 'toc') { return; } ob_start(); -shownews($articles, @$Page->place['n'] ?: 5); +shownews($articles, @$Page->place['n'] ?: 5, !empty($Page->place['teaser'])); $Page->raw = ob_get_clean(); print $Page->render();