Skip to content

Commit

Permalink
reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
stancl authored May 27, 2021
1 parent d5f1334 commit 6c2cd50
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions assets/views/components/meta.blade.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
<meta property="og:type" content="website" />
@if(seo('site')) <meta property="og:site_name" content="@seo('site')"> @endif
@if(seo('title'))
<title>@seo('title')</title>
<meta property="og:title" content="@seo('title')" />
@endif

@if(seo('description'))
<meta property="og:description" content="@seo('description')" />
<meta name="description" content="@seo('description')" />
@endif

<meta property="og:type" content="website" />

@if(seo('site')) <meta property="og:site_name" content="@seo('site')"> @endif

@if(seo('image')) <meta property="og:image" content="@seo('image')" /> @endif

@if(seo('url'))
<meta property="og:url" content="@seo('url')" />
<link rel="canonical" href="@seo('url')" />
Expand Down

0 comments on commit 6c2cd50

Please sign in to comment.