mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
16 lines
510 B
PHP
16 lines
510 B
PHP
<!doctype html>
|
|
<html lang="{{ app()->getLocale() }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ config('app.name', 'AnimeThemes') }}</title>
|
|
<link rel="stylesheet" href="{{ asset('css/pomf.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
@yield('content')
|
|
</div>
|
|
@yield('footer')
|
|
</body>
|
|
</html> |