X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/087428a7f2e31e2d9269084ba2a2f3b114a8c8d7..1a9bcec664787509cfa7ac83a2570e7090add55a:/nieuws/index.php diff --git a/nieuws/index.php b/nieuws/index.php index bbc002a..cdb3892 100644 --- a/nieuws/index.php +++ b/nieuws/index.php @@ -1,53 +1,77 @@ '.$article->date.''; + print preg_replace('{(?<=

)(.*?)(?=

)}', ($edit ?: '\1').' [[1]]', ob_get_clean()); + if ($article->image) { + $Place['image'] = "https://lijtweg.nl/".$article->thumb('600x'); + } + if ($replyform) { + include 'nieuws/replies.php'; + } return 1; } if ($year) { ob_clean(); - if (is_numeric($year)) { - $title = "Nieuws ".($month ? $monthname[$month].' ' : '').$year; - $match = implode('/', [ - $Page, $year, $month ? sprintf('%02d', $month) : '??', - ]); + $title = "Nieuws"; + if (is_numeric($year) and $year > 999) { + $match = "$Page/$year/"; + if (is_numeric($page)) { + $title .= ' '.$monthname[intval($page)]; + $match .= sprintf('%02d-', $page); + } + $title .= ' '.$year; } - else { - $title = "Nieuws vóór 2000"; - $match = "$Page/19??/??"; + elseif ($year === '19') { + $match = "$Page/19??/"; + $title .= " vóór 2000"; } print "

$title

\n\n"; - print '
'."\n\n"; - shownews($match); - print "
\n\n"; + shownews(glob($match.'*.html')); return 1; } -if ($Args) { - return; -} +$html = ob_get_clean(); +printf(''."\n", "/$Page/feed"); +print $html; print '
'."\n\n"; foreach (array_reverse(glob("$Page/2???")) as $page) { $year = basename($page, '.html'); printf('

%s

'."\n", $page, $year); - printtoc("$page/??"); + printtoc($page); } -if ($pages = glob("$Page/19??/??/*.html")) { - printf('

%s

'."\n", "$Page/oud", 'Eerder'); +if ($pages = glob("$Page/19??/*.html")) { + printf('

%s

'."\n", "$Page/19", 'Eerder'); printtoc($pages); } print "
\n\n"; +if ($replyform) { + print "

Melding rapporteren

\n"; + $_REQUEST['subject'] = 'melding'; + require 'contact.php'; +?> +
+

+ + +

+
+'."\n"; }