[enh] Bootstrap PHP interface

This commit is contained in:
kload
2014-11-08 14:31:48 +01:00
parent 2de9bf3b2c
commit 0cc34124bd
33 changed files with 13802 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Limonade, the fizzy PHP micro-framework</title>
<link rel="stylesheet" href="<?php echo url_for('/_lim_css/screen.css');?>" type="text/css" media="screen">
</head>
<body>
<div id="header">
<h1>Limonade</h1>
</div>
<div id="content">
<?php echo error_notices_render(); ?>
<div id="main">
<?php echo $content;?>
<hr class="space">
</div>
</div>
</body>
</html>