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 80b5523 commit b54cfe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/components/article-excerpt.blade.php
@@ -1,7 +1,7 @@
<article class="mt-4 mb-8" itemscope itemtype="https://schema.org/Article">
<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>
Expand Down

0 comments on commit b54cfe4

Please sign in to comment.