1
0
This repository has been archived on 2021-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ttv-streamkit/resources/views/layouts/app.blade.php
2020-04-30 00:33:55 +02:00

22 lines
676 B
PHP

<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}" class="uk-background-secondary">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>@yield("title") {{ config("app.name") }}</title>
<link rel="shortcut icon" href="/img/twitch-icon.png">
<link rel="stylesheet" href="{{ mix('/css/app.css') }}">
<script src="{{ mix('/js/app.js') }}" charset="utf-8"></script>
</head>
<body>
@include("common.header")
<div id="content" class="uk-light">
@yield("content")
</div>
@include("common.footer")
</body>
</html>