update: convert to pug

This commit is contained in:
Clément
2018-09-06 11:25:52 +02:00
parent a7d8a91457
commit facbd376bc
55 changed files with 410 additions and 478 deletions

8
router.php Normal file
View File

@ -0,0 +1,8 @@
<?php
if (PHP_SAPI == 'cli-server') {
$url = parse_url($_SERVER['REQUEST_URI']);
$file = __DIR__ . $url['path'];
if (is_file($file)) return false;
}
include "index.html";