pollthingy/resources/views/layouts/app.blade.php

29 lines
779 B
PHP
Raw Normal View History

<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<title>@yield('title') - {{ config('app.name') }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ mix('/css/mixed.css') }}" rel="stylesheet">
</head>
<body>
2018-10-12 18:54:48 +02:00
<header class="ta-center">
<h1>@yield('title')</h1>
</header>
2018-10-12 18:54:48 +02:00
<main class="dick wrapper-large no-top-padding some-bottom-padding">
@yield('content')
2018-10-12 18:54:48 +02:00
</main>
2018-10-18 22:52:19 +02:00
<div class="text-browser"><br></div>
<footer>
2018-10-19 20:47:14 +02:00
<p>Dates and times are {{ Config::get('app.timezone') }}.</p>
@includeIf('footer')
</footer>
</body>
</html>