From 98e4d4d09d9ce91d1c1a8a0c31c68135bd29c0c0 Mon Sep 17 00:00:00 2001 From: Raquelle Fahle Date: Wed, 14 Jun 2017 16:41:42 -0500 Subject: [PATCH] Change syntax of template call to match other files in views/ --- resources/views/single.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/single.blade.php b/resources/views/single.blade.php index b94c206..cf60c3e 100644 --- a/resources/views/single.blade.php +++ b/resources/views/single.blade.php @@ -2,6 +2,6 @@ @section('content') @while(have_posts()) @php(the_post()) - @include('partials/content-single-'.get_post_type()) + @include('partials.content-single-'.get_post_type()) @endwhile @endsection