updated so many things, my bad

This commit is contained in:
2022-06-22 10:47:22 -06:00
parent 938e1f8c96
commit 6cf7a5e3d1
22 changed files with 1513 additions and 663 deletions

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Set the base URL for all relative URLs within the document -->
<base href="https://example.com/">
<base href="{{ url('/') }}">
<meta name="robots" content="index,follow">
<meta name="googlebot" content="index,follow">
@ -17,32 +17,32 @@
<!-- Prefetching, preloading, prebrowsing -->
<meta http-equiv="x-dns-prefetch-control" content="off">
<link rel="dns-prefetch" href="//example.com/">
<link rel="preconnect" href="https://www.example.com/">
<link rel="prefetch" href="https://www.example.com/">
<link rel="prerender" href="https://example.com/">
<link rel="dns-prefetch" href="{{ config('app.domain', 'localhost') }}">
<link rel="preconnect" href="{{ url('/') }}">
<link rel="prefetch" href="{{ url('/') }}">
<link rel="prerender" href="{{ url('/') }}">
<link rel="preload" href="image.png" as="image">
<meta name="rating" content="General">
<meta name="url" content="{{ url('/') }}">
<meta name="subject" content="your website's subject">
<meta name="description" content="A description of the page">
<meta name="subject" content="{{ $pageSubject ?? "your website's subject" }}">
<meta name="description" content="{{ $pageDescription ?? "A description of the page" }}">
<title inertia>{{ config('app.name', 'Laravel') }}</title>
<!-- Name of web application (only should be used if the website is used as an app) -->
<meta name="application-name" content="Application Name">
<!-- <meta name="application-name" content="Application Name"> -->
<!-- Privacy -->
<meta name="twitter:dnt" content="on">
<meta name="pinterest" content="nopin" description="Sorry, you can't save from my website!">
<meta name="pinterest" content="nopin" description="No pinning allowed.">
<!-- analytics -->
<!-- -->
<!-- Helps prevent duplicate content issues -->
<link href="{{ url()->full() }}" rel="canonical">
<link href="{{ url()->current() }}" rel="canonical">
<!-- Gives a reference to a location in your document that may be in another language -->
{{-- <link href="https://de.example.com/2010/06/title-of-my-article" rel="alternate" hreflang="de"> --}}
@ -59,8 +59,8 @@
{{-- <link href="{{ url('/feed.atom') }}" type="application/atom+xml" title="Atom 0.3" rel="alternate"> --}}
<!-- oEmbed links -->
<link rel="alternate" type="application/json+oembed" href="https://example.com/services/oembed?url=http%3A%2F%2Fexample.com%2Ffoo%2F&amp;format=json" title="oEmbed Profile: JSON">
<link rel="alternate" type="text/xml+oembed" href="https://example.com/services/oembed?url=http%3A%2F%2Fexample.com%2Ffoo%2F&amp;format=xml" title="oEmbed Profile: XML">
{{-- <link rel="alternate" type="application/json+oembed" href="https://example.com/services/oembed?url={{ urlencode(url()->current()) }}&amp;format=json" title="oEmbed Profile: JSON"> --}}
{{-- <link rel="alternate" type="text/xml+oembed" href="https://example.com/services/oembed?url={{ urlencode(url()->current()) }}&amp;format=xml" title="oEmbed Profile: XML"> --}}
<!-- Favicon -->
{{-- <link href="{{ asset('/favicon.ico') }}" rel="icon" sizes="16x16" type="image/icon" integrity="{{ env('INTEGRITY_HASH_FAVICON_ICO') }}"> --}}
@ -68,7 +68,12 @@
{{-- <link href="{{ asset('/favicon.png') }}" rel="icon" sizes="192x192" integrity="{{ env('INTEGRITY_HASH_FAVICON_PNG') }}"> --}}
<!-- Font preloads (should be done for each font file) -->
<link href="{{ asset('/fonts/Nunito/Nunito-Regular.woff2') }}" rel="preload" as="font" type="font/woff2" integrity="{{ env('INTEGRITY_HASH_NUNITO_REGULAR_WOFF2_FONT') }}" crossorigin="anonymous">
<link href="{{ asset('/fonts/Nunito/Nunito-Bold.woff2') }}" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
<link href="{{ asset('/fonts/Nunito/Nunito-SemiBold.woff2') }}" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
<link href="{{ asset('/fonts/Nunito/Nunito-Regular.woff2') }}" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
<link href="{{ asset('/fonts/OpenSans/OpenSans-Bold.woff2') }}" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
<link href="{{ asset('/fonts/OpenSans/OpenSans-SemiBold.woff2') }}" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
<link href="{{ asset('/fonts/OpenSans/OpenSans-Regular.woff2') }}" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
<!-- CSS -->
<link href="{{ mix('/css/app.css') }}" rel="stylesheet" integrity="{{ env('INTEGRITY_HASH_APP_CSS') }}" media="screen">
@ -86,7 +91,7 @@
<script src="{{ mix('/js/app.js') }}" integrity="{{ env('INTEGRITY_HASH_APP_JS') }}" defer></script>
</head>
<body class="bg-gray-100 font-sans antialiased">
<x-country-flags></x-country-flags>
<x-flags></x-flags>
@inertia

View File

@ -1,10 +1 @@
<meta property="fb:app_id" content="123456789">
<meta property="og:url" content="https://example.com/page.html">
<meta property="og:type" content="website">
<meta property="og:title" content="Content Title">
<meta property="og:image" content="https://example.com/image.jpg">
<meta property="og:image:alt" content="A description of what is in the image (not a caption)">
<meta property="og:description" content="Description Here">
<meta property="og:site_name" content="Site Name">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="">

View File

@ -0,0 +1,26 @@
<!-- https://ogp.me/ -->
<meta property="og:site_name" content="Site Name">
<meta property="og:type" content="website">
<meta property="og:url" content="https://example.com/page.html">
<meta property="og:locale" content="en_US">
<meta property="og:title" content="Content Title">
<meta property="og:description" content="Description Here">
<meta property="og:image" content="https://example.com/image.jpg">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="640">
<meta property="og:image:height" content="480">
<meta property="og:image:alt" content="A description of what is in the image (not a caption)">
<meta property="og:video" content="https://example.com/video.m4v">
<meta property="og:video:type" content="video/mp4">
<meta property="og:video:width" content="640">
<meta property="og:video:height" content="480">
<meta property="og:audio" content="https://example.com/sound.mp3">
<meta property="og:audio:type" content="audio/mpeg">
<meta property="article:author" content="">
<meta property="article:published_time" content="YYYY-MM-DDTHH:MM:SS+00:00">
<meta property="article:modified_time" content="YYYY-MM-DDTHH:MM:SS+00:00">
<meta property="article:expiration_time" content="YYYY-MM-DDTHH:MM:SS+00:00">