[enh] Bootstrap PHP interface
This commit is contained in:
22
sources/lib/limonade/views/default_layout.php
Normal file
22
sources/lib/limonade/views/default_layout.php
Normal 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>
|
Reference in New Issue
Block a user