nieuws: ArchiveArticle class to access news pages
[minimedit.git] / nieuws / index.php
index 374b9b0db8168399128b3f776a811daabe7c57db..8a613c2591f57531c594bd28a13ebd2f6d69712e 100644 (file)
@@ -6,7 +6,13 @@ $replyform = $Page == 'melding' && !empty($User);
 
 if ($page and !is_numeric($page)) {
        $edit = !empty($User['admin']) ? htmlspecialchars(@$_GET['edit']) : NULL;
-       print shownewsarticle($Page.$Args, FALSE, $edit);
+       $article = new ArchiveArticle("$Page$Args.html");
+       $Place[1] = ' <small class="date">'.$article->date.'</small>';
+       print preg_replace('{(?<=<h2>)(.*?)(?=</h2>)}', ($edit ?: '\1').' [[1]]', ob_get_clean());
+       if ($article->image) {
+               $Place['image'] = "https://lijtweg.nl/".$article->thumb('600x');
+               printf('<p><img src="/%s" /></p>'."\n", $article->thumb('640x'));
+       }
 
        if ($replyform) {
                print '<h3>Reacties</h3>'."\n";