|
3 | 3 |
|
4 | 4 | @unless(seo()->hasTag('og:title'))
|
5 | 5 | {{-- If an og:title tag is provided directly, it's included in the @foreach below --}}
|
6 |
| - <meta property="og:title" content="@seo('title')" /> |
| 6 | + <meta property="og:title" content="@seo('title')"> |
7 | 7 | @endunless
|
8 | 8 | @endif
|
9 | 9 |
|
10 | 10 | @if(seo('description'))
|
11 |
| - <meta property="og:description" content="@seo('description')" /> |
12 |
| - <meta name="description" content="@seo('description')" /> |
| 11 | + <meta property="og:description" content="@seo('description')"> |
| 12 | + <meta name="description" content="@seo('description')"> |
13 | 13 | @endif
|
14 | 14 |
|
15 | 15 | @if(seo('keywords'))
|
16 |
| - <meta name="keywords" content="@seo('keywords')" /> |
| 16 | + <meta name="keywords" content="@seo('keywords')"> |
17 | 17 | @endif
|
18 | 18 |
|
19 | 19 | @if(seo('type'))
|
20 |
| - <meta property="og:type" content="@seo('type')" /> |
| 20 | + <meta property="og:type" content="@seo('type')"> |
21 | 21 | @else
|
22 |
| - <meta property="og:type" content="website" /> |
| 22 | + <meta property="og:type" content="website"> |
23 | 23 | @endif
|
24 | 24 |
|
25 |
| -@if(seo('site')) <meta property="og:site_name" content="@seo('site')" /> @endif |
| 25 | +@if(seo('site')) <meta property="og:site_name" content="@seo('site')"> @endif |
26 | 26 |
|
27 |
| -@if(seo('locale')) <meta property="og:locale" content="@seo('locale')" /> @endif |
| 27 | +@if(seo('locale')) <meta property="og:locale" content="@seo('locale')"> @endif |
28 | 28 |
|
29 |
| -@if(seo('image')) <meta property="og:image" content="@seo('image')" /> @endif |
| 29 | +@if(seo('image')) <meta property="og:image" content="@seo('image')"> @endif |
30 | 30 |
|
31 | 31 | @if(seo('url'))
|
32 |
| - <meta property="og:url" content="@seo('url')" /> |
33 |
| - <link rel="canonical" href="@seo('url')" /> |
| 32 | + <meta property="og:url" content="@seo('url')"> |
| 33 | + <link rel="canonical" href="@seo('url')"> |
34 | 34 | @endif
|
35 | 35 |
|
36 | 36 | @foreach(seo()->tags() as $tag)
|
|
0 commit comments