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
flashwave 5d50d9e771 happy cirno day (r20150909)
Signed-off-by: Flashwave <me@flash.moe>
2015-09-09 21:25:57 +02:00

22 lines
408 B
PHP

<?php
/*
* Sakura FAQ 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' => 'Frequently Asked Questions',
'questions' => Main::getFaqData()
];
// Print page contents
print Templates::render('main/faq.tpl', $renderData);