2016-04-10 09:38:07 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2018-11-18 20:04:12 +01:00
|
|
|
<title><?= $this->section('title', '') ?> | URL shortener</title>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
|
|
|
|
<style>
|
|
|
|
body {padding-top: 60px;}
|
|
|
|
.app {display: flex; min-height: 100vh; flex-direction: column;}
|
|
|
|
.app-content {flex: 1;}
|
|
|
|
.app-footer p {margin-bottom: 20px;}
|
|
|
|
</style>
|
|
|
|
<?= $this->section('stylesheets', '') ?>
|
2016-04-10 09:38:07 +02:00
|
|
|
</head>
|
|
|
|
<body class="app">
|
2018-11-18 20:04:12 +01:00
|
|
|
<div class="app-content">
|
|
|
|
<main class="container">
|
|
|
|
<?= $this->section('main', '') ?>
|
|
|
|
</main>
|
|
|
|
</div>
|
2016-04-10 09:38:07 +02:00
|
|
|
|
2018-11-18 20:04:12 +01:00
|
|
|
<footer class="app-footer">
|
|
|
|
<div class="container">
|
|
|
|
<hr />
|
|
|
|
<p>© <?= date('Y') ?> <a href="https://shlink.io">Shlink</a></p>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2016-04-10 09:38:07 +02:00
|
|
|
</body>
|
|
|
|
</html>
|