You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><?php echo $title; ?></title>
|
|
<?php echo Asset::css('bootstrap.css'); ?>
|
|
<style>
|
|
body { margin: 40px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="col-md-12">
|
|
<h1><?php echo $title; ?></h1>
|
|
<hr>
|
|
<?php if (Session::get_flash('success')): ?>
|
|
<div class="alert alert-success">
|
|
<strong>Success</strong>
|
|
<p>
|
|
<?php echo implode('</p><p>', e((array) Session::get_flash('success'))); ?>
|
|
</p>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if (Session::get_flash('error')): ?>
|
|
<div class="alert alert-danger">
|
|
<strong>Error</strong>
|
|
<p>
|
|
<?php echo implode('</p><p>', e((array) Session::get_flash('error'))); ?>
|
|
</p>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<div class="col-md-12">
|
|
<?php echo $content; ?>
|
|
</div>
|
|
<footer>
|
|
<p class="pull-right">Page rendered in {exec_time}s using {mem_usage}mb of memory.</p>
|
|
<p>
|
|
<a href="http://fuelphp.com">FuelPHP</a> is released under the MIT license.<br>
|
|
<small>Version: <?php echo e(Fuel::VERSION); ?></small>
|
|
</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|