pixelfed/resources/views/site/index.blade.php

55 wiersze
2.6 KiB
PHP
Czysty Zwykły widok Historia

2019-03-16 08:49:42 +00:00
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
2021-05-24 05:09:26 +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() }}">
2018-08-20 01:22:54 +00:00
2021-05-24 05:09:26 +00:00
<meta name="mobile-web-app-capable" content="yes">
2018-08-20 01:22:54 +00:00
<title>{{ config_cache('app.name', 'Pixelfed') }}</title>
2018-08-20 01:22:54 +00:00
2023-04-08 05:14:08 +00:00
<link rel="canonical" href="{{ request()->url() }}" />
<meta property="og:site_name" content="{{ config_cache('app.name', 'pixelfed') }}" />
<meta property="og:title" content="{{ config_cache('app.name', 'pixelfed') }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{request()->url()}}" />
<meta property="og:image" content="{{ config_cache('app.banner_image') ?? url('storage/headers/default.jpg')}}" />
<meta property="og:description" content="{{ config_cache('app.short_description') ?? 'Decentralized photo sharing social media powered by Pixelfed' }}" />
<meta name="description" content="{{ config_cache('app.short_description') ?? 'Decentralized photo sharing social media powered by Pixelfed' }}" />
<meta name="twitter:title" content="{{ config_cache('app.name', 'pixelfed') }}" />
<meta name="twitter:description" content="{{ config_cache('app.short_description') ?? 'Decentralized photo sharing social media powered by Pixelfed' }}" />
<meta name="twitter:image" content="{{ config_cache('app.banner_image') ?? url('storage/headers/default.jpg')}}" />
<meta name="twitter:card" content="summary_large_image" />
2021-05-24 05:09:26 +00:00
<meta name="medium" content="image">
<meta name="theme-color" content="#10c5f8">
<meta name="apple-mobile-web-app-capable" content="yes">
2023-04-08 05:14:08 +00:00
<link rel="manifest" href="{{url('/manifest.json')}}" />
<link rel="icon" type="image/png" href="{{url('/img/favicon.png')}}">
<link rel="apple-touch-icon" type="image/png" href="{{url('/img/favicon.png')}}">
2021-05-24 05:09:26 +00:00
<link href="{{ mix('css/landing.css') }}" rel="stylesheet">
2023-04-08 05:14:08 +00:00
<link rel="preload" as="image" href="{{ url('/_landing/bg.jpg')}}" />
2023-04-08 04:35:51 +00:00
<script type="text/javascript">
window.pfl = {!! App\Services\LandingService::get() !!}
</script>
2019-03-16 08:49:42 +00:00
</head>
2023-04-08 04:35:51 +00:00
<body>
<main id="content">
<noscript>
<div class="container">
<h1 class="pt-5 text-center">Pixelfed</h1>
<p class="pt-2 text-center lead">Please enable javascript to view this content.</p>
2021-05-24 05:09:26 +00:00
</div>
2023-04-08 04:35:51 +00:00
</noscript>
<navbar></navbar>
<router-view></router-view>
</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/landing.js') }}"></script>
</body>
2019-04-30 07:29:02 +00:00
</html>