2018-09-09 20:20:47 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ app()->getLocale() }}">
|
|
|
|
<head>
|
2021-05-08 03:47:51 +00:00
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
|
|
|
|
<title>{{ $title ?? config_cache('app.name') }}</title>
|
|
|
|
|
|
|
|
<meta property="og:site_name" content="{{ config('app.name', 'pixelfed') }}">
|
|
|
|
<meta property="og:title" content="{{ $title ?? config('app.name', 'pixelfed') }}">
|
|
|
|
<meta property="og:type" content="article">
|
|
|
|
<meta property="og:url" content="{{request()->url()}}">
|
|
|
|
@stack('meta')
|
|
|
|
|
|
|
|
<meta name="medium" content="image">
|
|
|
|
<meta name="theme-color" content="#10c5f8">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="/img/favicon.png?v=2">
|
|
|
|
<link rel="apple-touch-icon" type="image/png" href="/img/favicon.png?v=2">
|
|
|
|
<link rel="canonical" href="{{request()->url()}}">
|
|
|
|
@if(request()->cookie('dark-mode'))
|
|
|
|
|
|
|
|
<link href="{{ mix('css/appdark.css') }}" rel="stylesheet" data-stylesheet="dark">
|
|
|
|
@else
|
|
|
|
|
|
|
|
<link href="{{ mix('css/app.css') }}" rel="stylesheet" data-stylesheet="light">
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@stack('styles')
|
|
|
|
|
|
|
|
<script type="text/javascript">window._sharedData = {curUser: {}, version: 0}; window.App = {config: {!!App\Util\Site\Config::json()!!}};</script>
|
2019-08-02 08:14:30 +00:00
|
|
|
|
2018-09-09 20:20:47 +00:00
|
|
|
</head>
|
2020-04-11 03:28:51 +00:00
|
|
|
<body class="w-100 h-100">
|
2021-05-08 03:47:51 +00:00
|
|
|
<main id="content" class="w-100 h-100">
|
|
|
|
@yield('content')
|
|
|
|
</main>
|
|
|
|
<script type="text/javascript" src="{{ mix('js/manifest.js') }}"></script>
|
|
|
|
<script type="text/javascript" src="{{ mix('js/vendor.js') }}"></script>
|
|
|
|
<script type="text/javascript" src="{{ mix('js/app.js') }}"></script>
|
|
|
|
<script type="text/javascript" src="{{ mix('js/components.js') }}"></script>
|
|
|
|
@stack('scripts')
|
2018-09-09 20:20:47 +00:00
|
|
|
</body>
|
|
|
|
</html>
|