login/pass: error messages below page title
[minimedit.git] / search / index.php
1 <?php
2 $Page->title = 'Zoeken';
3 printf("<h2>%s</h2>\n", $Page->title);
4 print $Page->raw;
5
6 if (isset($_REQUEST['q'])) {
7         printf("<h3>Pagina's met <q>%s</q></h3>\n", $_REQUEST['q']);
8         print $Page->widget('search', ['limit' => 50]);
9 }
10 return;