mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
24 lines
555 B
PHP
Executable file
24 lines
555 B
PHP
Executable file
<?php
|
|
|
|
require_once "app/lib/Parsedown.php";
|
|
|
|
/**
|
|
* Displays info about the RaspAP project
|
|
*/
|
|
function DisplayAbout()
|
|
{
|
|
$Parsedown = new Parsedown();
|
|
$strContent = file_get_contents($_SERVER['DOCUMENT_ROOT'].'/BACKERS.md');
|
|
$sponsorsHtml = $Parsedown->text($strContent);
|
|
|
|
$strContent = file_get_contents($_SERVER['DOCUMENT_ROOT'].'/CONTRIBUTING.md');
|
|
$contributingHtml = $Parsedown->text($strContent);
|
|
|
|
echo renderTemplate(
|
|
"about", compact(
|
|
'sponsorsHtml',
|
|
'contributingHtml'
|
|
)
|
|
);
|
|
}
|
|
|