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

24 lines
813 B
PHTML
Raw Normal View History

2016-04-10 10:38:07 +03:00
<!DOCTYPE html>
2018-12-07 11:17:26 +03:00
<html lang="<?= $this->locale() ?>">
<head>
<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/4.3.1/css/bootstrap.min.css">
2018-12-07 11:17:26 +03:00
<link rel="shortcut icon" href="/favicon.ico">
<style>
html, body {height: 100%}
.app {height: 100vh; display: flex; align-items: center; justify-content: center; flex-flow: column;}
2018-12-07 11:17:26 +03:00
</style>
<?= $this->section('stylesheets', '') ?>
</head>
<body>
<div class="app">
2018-12-07 11:17:26 +03:00
<main class="container">
<?= $this->section('main', '') ?>
</main>
2018-11-18 22:04:12 +03:00
</div>
2018-12-07 11:17:26 +03:00
</body>
2016-04-10 10:38:07 +03:00
</html>