shlink/module/Core/templates/layout/default.phtml

43 lines
1.5 KiB
PHTML
Raw Normal View History

2016-04-10 10:38:07 +03:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
2017-10-12 11:03:14 +03:00
<title><?= $this->section('title', '') ?> | URL shortener</title>
2016-04-10 10:38:07 +03:00
<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" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" />
<style>
2016-05-02 18:17:11 +03:00
body {padding-top: 60px;}
.app {display: flex; min-height: 100vh; flex-direction: column;}
.app-content {flex: 1;}
.app-footer p {margin-bottom: 20px;}
2016-04-10 10:38:07 +03:00
</style>
2017-10-12 11:03:14 +03:00
<?= $this->section('stylesheets', '') ?>
2016-04-10 10:38:07 +03:00
</head>
<body class="app">
<div class="app-content">
<main class="container">
2017-10-12 11:03:14 +03:00
<?= $this->section('main', '') ?>
2016-04-10 10:38:07 +03:00
</main>
</div>
<footer class="app-footer">
<div class="container">
<hr />
2017-10-12 11:03:14 +03:00
<?php if ($this->section('footer')): ?>
<?= $this->section('footer') ?>
<?php else: ?>
2016-04-10 10:38:07 +03:00
<p>
2017-10-12 11:03:14 +03:00
&copy; <?= date('Y') ?> <a href="https://shlink.io">Shlink</a>
2016-04-10 10:38:07 +03:00
</p>
2017-10-12 11:03:14 +03:00
<?php endif; ?>
2016-04-10 10:38:07 +03:00
</div>
</footer>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
2017-10-12 11:03:14 +03:00
<?= $this->section('javascript', '') ?>
2016-04-10 10:38:07 +03:00
</body>
</html>