mirror of
https://github.com/phpmon/website
synced 2025-12-21 11:20:07 +01:00
30 lines
1.3 KiB
PHP
30 lines
1.3 KiB
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>@yield('title')</title>
|
|
<meta name="description" content="@yield('description')">
|
|
{{-- Web Fonts --}}
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
|
{{-- Vite --}}
|
|
@vite('resources/css/app.css')
|
|
{{-- OG --}}
|
|
<meta property="og:title" content="@yield('title')">
|
|
<meta property="og:description" content="@yield('description')">
|
|
<meta property="og:image" content="{{ url('/images/phpmon-social.png') }}">
|
|
{{-- Favicons --}}
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
{{-- Umami --}}
|
|
<script defer src="https://umami.nicoverbruggen.be/script.js" data-website-id="a94ced9c-2bdd-4a02-9c52-f1b8d34aba89"></script>
|
|
</head>
|
|
<body class="font-sans antialiased">
|
|
@yield('content')
|
|
</body>
|
|
</html>
|