This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/public/search.php
flashwave 2a642ce381 r20151107
Signed-off-by: Flashwave <me@flash.moe>
2015-11-07 23:58:02 +01:00

28 lines
528 B
PHP
Executable file

<?php
/*
* Sakura Search Page
*/
// Declare Namespace
namespace Sakura;
// Include components
require_once str_replace(basename(__DIR__), '', dirname(__FILE__)) . '_sakura/sakura.php';
// Add page specific things
$renderData['page'] = [
'title' => 'Search',
];
// Initialise templating engine
$template = new Template();
// Change templating engine
$template->setTemplate($templateName);
// Set parse variables
$template->setVariables($renderData);
// Print page contents
echo $template->render('main/search.tpl');