Archived
1
0
Disbranĉigi 0

Added basic pages

This commit is contained in:
Jenga Phoenix 2019-02-11 10:44:20 -06:00
parent 8cef0bf544
commit e3527c7600
3 changed files with 21 additions and 0 deletions

7
about.php Normal file
View File

@ -0,0 +1,7 @@
<?php
$depth = "";
include "res/lib/load.php";
echo $GLOBALS['twig']->render('about.twig.html', []);
?>

7
post.php Normal file
View File

@ -0,0 +1,7 @@
<?php
$depth = "";
include "res/lib/load.php";
echo $GLOBALS['twig']->render('post.twig.html', []);
?>

7
user.php Normal file
View File

@ -0,0 +1,7 @@
<?php
$depth = "";
include "res/lib/load.php";
echo $GLOBALS['twig']->render('user.twig.html', []);
?>