1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/leed_ynh.git synced 2024-09-03 19:26:32 +02:00
leed_ynh/sources/about.php
2014-06-17 17:41:03 -04:00

17 lines
338 B
PHP
Executable file

<?php
/*
@nom: about
@auteur: Idleman (idleman@idleman.fr)
@description: Page "A propos" d'information contextuelles sur le projet
*/
require_once('header.php');
require_once('constant.php');
$tpl->assign('VERSION_NUMBER',VERSION_NUMBER);
$tpl->assign('VERSION_NAME',VERSION_NAME);
$view = 'about';
require_once('footer.php');
?>