|
@@ -10,7 +10,7 @@
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
|
|
<title>{{ $title ?? config_cache('app.name') }}</title>
|
|
<title>{{ $title ?? config_cache('app.name') }}</title>
|
|
- <link rel="manifest" href="/manifest.json">
|
|
|
|
|
|
+ <link rel="manifest" href="{{url('/manifest.json')}}">
|
|
|
|
|
|
<meta property="og:site_name" content="{{ config_cache('app.name') }}">
|
|
<meta property="og:site_name" content="{{ config_cache('app.name') }}">
|
|
<meta property="og:title" content="{{ $title ?? config_cache('app.name') }}">
|
|
<meta property="og:title" content="{{ $title ?? config_cache('app.name') }}">
|
|
@@ -21,8 +21,8 @@
|
|
<meta name="medium" content="image">
|
|
<meta name="medium" content="image">
|
|
<meta name="theme-color" content="#10c5f8">
|
|
<meta name="theme-color" content="#10c5f8">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<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="shortcut icon" type="image/png" href="{{url('/img/favicon.png?v=2')}}">
|
|
|
|
+ <link rel="apple-touch-icon" type="image/png" href="{{url('/img/favicon.png?v=2')}}">
|
|
<link rel="canonical" href="{{url(request()->url())}}">
|
|
<link rel="canonical" href="{{url(request()->url())}}">
|
|
@if(request()->cookie('dark-mode'))
|
|
@if(request()->cookie('dark-mode'))
|
|
|
|
|
|
@@ -58,30 +58,6 @@
|
|
<script type="text/javascript" src="{{ mix('js/app.js') }}"></script>
|
|
<script type="text/javascript" src="{{ mix('js/app.js') }}"></script>
|
|
<script type="text/javascript" src="{{ mix('js/components.js') }}"></script>
|
|
<script type="text/javascript" src="{{ mix('js/components.js') }}"></script>
|
|
@stack('scripts')
|
|
@stack('scripts')
|
|
- <div class="mobile-footer-spacer d-block d-sm-none mt-5"></div>
|
|
|
|
- <div class="mobile-footer d-block d-sm-none fixed-bottom">
|
|
|
|
- <div class="card card-body rounded-0 pt-2 pb-4 box-shadow" style="border-top:1px solid #F1F5F8">
|
|
|
|
- <ul class="nav nav-pills nav-fill d-flex align-items-middle">
|
|
|
|
- <li class="nav-item">
|
|
|
|
- <a class="nav-link text-dark" href="/"><i class="fal fa-home fa-2x"></i></a>
|
|
|
|
- </li>
|
|
|
|
- <li class="nav-item">
|
|
|
|
- <a class="nav-link text-dark" href="/discover"><i class="fal fa-search fa-2x"></i></a>
|
|
|
|
- </li>
|
|
|
|
- <li class="nav-item">
|
|
|
|
- <div class="nav-link cursor-pointer text-dark" onclick="App.util.compose.post()">
|
|
|
|
- <i class="fal fa-plus-circle fa-2x"></i>
|
|
|
|
- </div>
|
|
|
|
- </li>
|
|
|
|
- <li class="nav-item">
|
|
|
|
- <a class="nav-link text-dark" href="/account/activity"><i class="fal fa-bell fa-2x"></i></a>
|
|
|
|
- </li>
|
|
|
|
- <li class="nav-item">
|
|
|
|
- <a class="nav-link text-dark" href="/i/me"><i class="fal fa-user fa-2x"></i></a>
|
|
|
|
- </li>
|
|
|
|
- </ul>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
</body>
|
|
</body>
|
|
</html>
|
|
</html>
|
|
@endauth
|
|
@endauth
|
|
@@ -91,7 +67,7 @@
|
|
<head>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
|
|
<title>{{ $title ?? config('app.name', 'Pixelfed') }}</title>
|
|
<title>{{ $title ?? config('app.name', 'Pixelfed') }}</title>
|