mirror of
https://github.com/YunoHost-Apps/hotspot_ynh.git
synced 2024-09-03 19:25:53 +02:00
22 lines
507 B
PHP
22 lines
507 B
PHP
<!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>
|