X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/b95195ed4540a07ac0f31c363101698ada841d67..acc39fd2f0eaf516dbb534232ed5f631c269886b:/nieuws.inc.php diff --git a/nieuws.inc.php b/nieuws.inc.php index 8af5694..57c53fc 100644 --- a/nieuws.inc.php +++ b/nieuws.inc.php @@ -14,6 +14,15 @@ function shownewsdate($url) ])); } +function shownewsimage($url) +{ + foreach (['jpg', 'png'] as $ext) { + if (file_exists("$url.$ext")) { + return "$url.$ext"; + } + } +} + function shownewsarticle($url, $link = TRUE, $title = NULL) { $html = ob_get_clean(); @@ -25,23 +34,41 @@ function shownewsarticle($url, $link = TRUE, $title = NULL) $title = sprintf( $link ? '

%s

' : '

%s

', getoutput([1 => ' '.$date.'']), - preg_replace('/\.html$/', '', $url) + $url ); + + if (!$link and $image = shownewsimage($url)) { + global $Place; + $Place['image'] = "https://lijtweg.nl/thumb/600x/".$image; + ob_start(); + print '[[1]]'; + $html .= getoutput([ + 1 => sprintf("\n".'

', "/thumb/640x/".$image), + ]); + } + return preg_replace('{

(.*?)

}', $title, $html); } function shownews($input, $limit = 1000) { if (!is_array($input)) $input = glob("$input/*.html"); - foreach (array_reverse($input) as $url) { - print "
"; + print '
\n\n"; if (--$limit <= 0) break; } + print "\n\n"; } function printtoc($input)