X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/1f8560a20d5d1aa8886688bd7553b8a8fd704fff..df00ab2b9618c2ae1038c643b01b05d443368ee9:/nieuws/index.php diff --git a/nieuws/index.php b/nieuws/index.php index 4da5a8b..b54d5bd 100644 --- a/nieuws/index.php +++ b/nieuws/index.php @@ -20,9 +20,10 @@ if ($page and !is_numeric($page)) { if ($year) { ob_clean(); + $match = $Page; $title = "Nieuws"; if (is_numeric($year) and $year > 999) { - $match = "$Page/$year/"; + $match .= "/$year"; if (is_numeric($page)) { $title .= ' '.$monthname[intval($page)]; $match .= sprintf('%02d-', $page); @@ -30,51 +31,15 @@ if ($year) { $title .= ' '.$year; } elseif ($year === '19') { - $match = "$Page/19??/"; + $match .= "/19??"; $title .= " vóór 2000"; } print "

$title

\n\n"; - shownews(glob($match.'*.html')); + print placeholder_include('nieuws', [$match]); return 1; } -$html = ob_get_clean(); -printf(''."\n", - "/$Page/feed", - ' rel="alternate" title="Atom feed van nieuwsberichten" type="application/atom+xml"' -); -print $html; - -print '
'."\n\n"; - -foreach (array_reverse(glob("$Page/2???")) as $page) { - $year = basename($page, '.html'); - printf('

%s

'."\n", $page, $year); - printtoc($page); -} - -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"; }