Skip to content

Commit

Permalink
Fix broken meta url in schema prop
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Apr 2, 2022
1 parent b7cdaf6 commit 80b5523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/components/post/article.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@class(['mx-auto prose', 'torchlight-enabled' => Hyde\Framework\Features::hasTorchlight()])>
<meta itemprop="identifier" content="{{ $post->slug }}">
@if(Hyde::uriPath())
<meta itemprop="url" content="{{ Hyde::uriPath($post->slug) }}">
<meta itemprop="url" content="{{ Hyde::uriPath('posts/' . $post->slug) }}">
@endif

<header role="doc-pageheader">
Expand Down

0 comments on commit 80b5523

Please sign in to comment.