nieuws: prepend link to feed
[minimedit.git] / nieuws / index.php
index 374b9b0db8168399128b3f776a811daabe7c57db..678c3db8aba083317288b874cf3e0201df957a84 100644 (file)
@@ -6,7 +6,12 @@ $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');
+       }
 
        if ($replyform) {
                print '<h3>Reacties</h3>'."\n";
@@ -80,6 +85,10 @@ if ($year) {
        return 1;
 }
 
+$html = ob_get_clean();
+printf('<div class="nav right"><a href="%s">Feed</a></div>'."\n", "/$Page/feed");
+print $html;
+
 print '<div id="news">'."\n\n";
 
 foreach (array_reverse(glob("$Page/2???")) as $page) {