X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/fe92ec8f17c832c4a663aea399dc90a4c09ce6b1..e23ce7dc52392f928bf5879605da57e4bf7a7823:/nieuws/index.php diff --git a/nieuws/index.php b/nieuws/index.php index b28f72b..11e305e 100644 --- a/nieuws/index.php +++ b/nieuws/index.php @@ -1,53 +1,49 @@ '.$article->date.''; + print preg_replace('{(?<=

)(.*?)(?=

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

$title

\n\n"; - print '
'."\n\n"; - shownews($match, 100); - print "
\n\n"; + print placeholder_include('nieuws', [$match]); return 1; } -if ($Args) { - return; -} - -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/oud", 'Eerder'); - printtoc($pages); -} - -print "
\n\n"; - if (!empty($User['admin'])) { print ''."\n"; }