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/faq.php

31 lines
571 B
PHP
Raw Normal View History

2015-04-30 14:12:49 +00:00
<?php
/*
* Sakura FAQ Page
*/
// Declare Namespace
namespace Sakura;
// Include components
require_once str_replace(basename(__DIR__), '', dirname(__FILE__)) . 'sakura.php';
2015-04-30 14:12:49 +00:00
// Add page specific things
$renderData['page'] = [
2015-08-21 22:07:45 +00:00
'title' => 'Frequently Asked Questions',
'questions' => Main::getFaqData(),
2015-08-21 22:07:45 +00:00
2015-04-30 14:12:49 +00:00
];
// Initialise templating engine
$template = new Template();
// Change templating engine
$template->setTemplate($templateName);
// Set parse variables
$template->setVariables($renderData);
2015-04-30 14:12:49 +00:00
// Print page contents
echo $template->render('main/faq');