diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 397bdfae4d5..9894f033425 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -38,6 +38,7 @@ This serves two purposes: - Added missing collection key types in Hyde facade method annotations in https://github.com/hydephp/develop/pull/1784 - Fixed heading permalinks button text showing in Google Search previews https://github.com/hydephp/develop/issues/1801 in https://github.com/hydephp/develop/pull/1803 - Fixed routing issues with nested 404 pages where an index page does not exist https://github.com/hydephp/develop/issues/1781 in https://github.com/hydephp/develop/pull/1880 +- Fixed URL metadata for blog posts not using customized post output directories in https://github.com/hydephp/develop/pull/1889 - Realtime Compiler: Updated the exception handler to match HTTP exception codes when sending error responses in https://github.com/hydephp/develop/pull/1853 - Realtime Compiler: Improved routing for nested index pages in https://github.com/hydephp/develop/pull/1852 - Realtime Compiler: Improved the dashboard https://github.com/hydephp/develop/pull/1866 fixing https://github.com/hydephp/realtime-compiler/issues/22 and https://github.com/hydephp/realtime-compiler/issues/29 diff --git a/packages/framework/resources/views/components/article-excerpt.blade.php b/packages/framework/resources/views/components/article-excerpt.blade.php index 666c628ab0f..311b26e85aa 100644 --- a/packages/framework/resources/views/components/article-excerpt.blade.php +++ b/packages/framework/resources/views/components/article-excerpt.blade.php @@ -1,8 +1,8 @@ @php /** @var \Hyde\Pages\MarkdownPost $post */ @endphp
- @if(Hyde::hasSiteUrl()) - + @if($post->getCanonicalUrl()) + @endif