Added missing files

This commit is contained in:
Markus Koch 2017-01-27 20:35:47 +01:00 committed by root
parent ccb900b158
commit 02a0574f3e
3 changed files with 17 additions and 0 deletions

2
.gitignore vendored
View File

@ -6,3 +6,5 @@ b/*/*.*
s/*
p/*
!p/00-template.php
!p/404.php
!p/blog.php

11
p/404.php Normal file
View File

@ -0,0 +1,11 @@
<p style="text-align:center;">
<table border=0>
<tr>
<td style="font-size:14em;">404</td><td style="padding-left:50px; font-size:4em; text-align:left;">File not found!</td>
</tr>
</table>
</p>
<p>
The site you were looking for has been deleted or moved, or it never existed in the first place. Anyway, feel free to browse the site in search for your missing information.
</p>

4
p/blog.php Normal file
View File

@ -0,0 +1,4 @@
<?php
if (!isset($CMS_ACTIVE)) exit();
require_once "blog.php";
?>