summaryrefslogtreecommitdiff
path: root/resources/views/layouts/app.blade.php
blob: d6ec3e6061e7d9dc2ee97911d51a967aacccfed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
    <title>Zitate {{ config('app.name') }}</title>
</head>
<body class="bg-light">
<div class="container-fluid">
    @yield('content')
</div>
</body>
</html>