1<?php 2 3/** 4 * Page with search how to guide. 5 */ 6 7// Application bootstrap 8require __DIR__.'/../include/prepend.php'; 9 10// Authentication 11require_once __DIR__.'/../include/auth.php'; 12 13// Output template with given template variables. 14echo $template->render('pages/search_how_to.php'); 15