nieuws: article lists in left layout with images
[minimedit.git] / nieuws / index.php
1 <?php
2 include 'nieuws.inc.php';
3
4 @list ($year, $page) = explode('/', trim($Args, '/'));
5
6 if ($page and !is_numeric($page)) {
7         $edit = !empty($User['admin']) ? htmlspecialchars(@$_GET['edit']) : NULL;
8         print shownewsarticle($Page.$Args, FALSE, $edit);
9         return 1;
10 }
11
12 if ($year) {
13         ob_clean();
14         $title = "Nieuws";
15         if (is_numeric($year) and $year > 999) {
16                 $match = "$Page/$year/";
17                 if (is_numeric($page)) {
18                         $title .= ' '.$monthname[intval($page)];
19                         $match .= sprintf('%02d-', $page);
20                 }
21                 $title .= ' '.$year;
22         }
23         elseif ($year === '19') {
24                 $match = "$Page/19??/";
25                 $title .= " vóór 2000";
26         }
27
28         print "<h2>$title</h2>\n\n";
29         shownews(glob($match.'*.html'));
30         return 1;
31 }
32
33 print '<div id="news">'."\n\n";
34
35 foreach (array_reverse(glob("$Page/2???")) as $page) {
36         $year = basename($page, '.html');
37         printf('<h3><a href="/%s">%s</a></h3>'."\n", $page, $year);
38         printtoc($page);
39 }
40
41 if ($pages = glob("$Page/19??/*.html")) {
42         printf('<h3><a href="/%s">%s</a></h3>'."\n", "$Page/19", 'Eerder');
43         printtoc($pages);
44 }
45
46 print "</div>\n\n";
47
48 if (!empty($User['admin'])) {
49         print '<script src="/nieuws/edit.js"></script>'."\n";
50 }