1<?php 2 3$_SERVER['BASE_PAGE'] = 'results.php'; 4include __DIR__ . '/include/prepend.inc'; 5 6// HTTP status line is passed on, signifies an error 7site_header( 8 'Search results', 9 [ 10 'noindex', 11 'current' => 'help', 12 'layout_span' => 12, 13 ], 14); 15 16echo '<h1>Search results</h1>'; 17 18google_cse(); 19 20site_footer(); 21