add framework and basic application files

This commit is contained in:
coderkun 2014-01-17 02:19:53 +01:00
commit 9066928191
72 changed files with 6716 additions and 0 deletions

13
views/error.tpl Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Service Unavailable</title>
</head>
<body>
<p>Die Anwendung steht zur Zeit leider nicht zur Verfügung.</p>
</body>
</html>

View file

@ -0,0 +1,2 @@
<h1>Fehler</h1>
<p class="error"><?=$code?>: <?=$string?></p>

16
views/fault/fault.tpl Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>The Legend of Z</title>
</head>
<body>
<h1>The Legend of Z</h1>
<article>
<?=$intermediate?>
</article>
</body>
</html>

View file

@ -0,0 +1,2 @@
<h1>Fehler</h1>
<p class="error"><?=$code?>: <?=$string?></p>

16
views/html/html.tpl Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>The Legend of Z</title>
</head>
<body>
<h1>The Legend of Z</h1>
<article>
<?=$intermediate?>
</article>
</body>
</html>

1
views/inlineerror.tpl Normal file
View file

@ -0,0 +1 @@
<p>Dieser Teil der Anwendung steht zur Zeit leider nicht zur Verfügung.</p>