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/main/credits.php

30 lines
987 B
PHP
Raw Normal View History

2015-04-01 15:56:51 +00:00
<?php
/*
2015-04-01 17:25:14 +00:00
* Sakura Credits Page
2015-04-01 15:56:51 +00:00
*/
// Declare Namespace
namespace Sakura;
// Include components
require_once '/var/www/flashii.net/_sakura/sakura.php';
// Add page specific things
$renderData['page'] = [
2015-04-01 16:46:28 +00:00
'title' => 'Sakura Credits'
];
$renderData['contributors'] = [
'Flashwave' => ['Main contributer and owner of the site.', 'http://flash.moe'],
'Kurasha244' => ['Writing the base for the old backend.', 'http://saibateku.net'],
'nookls' => ['Code guidance and debug help.', 'http://nookls.org'],
'MallocNull' => ['Sock Chat and debug help.', 'http://aroltd.com']
];
$renderData['thirdParty'] = [
'ReCAPTCHA' => ['Providing the Captcha system we use.', 'http://recaptcha.net'],
2015-04-01 17:25:14 +00:00
'Twig' => ['The templating engine used by Sakura.', 'http://twig.sensiolabs.org/'],
'Parsedown' => ['A PHP markdown parser.', 'http://parsedown.org/']
2015-04-01 15:56:51 +00:00
];
// Print page contents
2015-04-01 16:46:28 +00:00
print Main::$_TPL->render('main/credits.tpl', $renderData);