From fc53cf18b86e98ee7b7ce83d61b4a71bd1da7569 Mon Sep 17 00:00:00 2001 From: Brandon Date: Mon, 10 Jan 2022 16:16:14 -0600 Subject: [PATCH] fix(views): Use dot notation on entry-meta view includes (#2941) --- resources/views/partials/content-search.blade.php | 2 +- resources/views/partials/content-single.blade.php | 2 +- resources/views/partials/content.blade.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/partials/content-search.blade.php b/resources/views/partials/content-search.blade.php index 937660f..4100c8d 100644 --- a/resources/views/partials/content-search.blade.php +++ b/resources/views/partials/content-search.blade.php @@ -6,7 +6,7 @@ - @includeWhen(get_post_type() === 'post', 'partials/entry-meta') + @includeWhen(get_post_type() === 'post', 'partials.entry-meta')
diff --git a/resources/views/partials/content-single.blade.php b/resources/views/partials/content-single.blade.php index 1b688ac..9786aee 100644 --- a/resources/views/partials/content-single.blade.php +++ b/resources/views/partials/content-single.blade.php @@ -4,7 +4,7 @@ {!! $title !!} - @include('partials/entry-meta') + @include('partials.entry-meta')
diff --git a/resources/views/partials/content.blade.php b/resources/views/partials/content.blade.php index c6b5bff..ae8be94 100644 --- a/resources/views/partials/content.blade.php +++ b/resources/views/partials/content.blade.php @@ -6,7 +6,7 @@ - @include('partials/entry-meta') + @include('partials.entry-meta')