31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<?php
|
|
/*
|
|
* Sakura Credits 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' => 'Sakura Credits'
|
|
];
|
|
$renderData['contributors'] = [
|
|
'Flashwave' => ['Main developer.', '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'],
|
|
'Twig' => ['The templating engine used by Sakura.', 'http://twig.sensiolabs.org/'],
|
|
'Parsedown' => ['A PHP markdown parser.', 'http://parsedown.org/'],
|
|
'Defuse' => ['Making the PBKDF2 implementation for PHP', 'http://defuse.ca/'],
|
|
'PHPMailer' => ['Writing PHPMailer and making e-mail sending a not pain in the ass', 'https://github.com/PHPMailer/PHPMailer']
|
|
];
|
|
|
|
// Print page contents
|
|
print Templates::render('main/credits.tpl', $renderData);
|