diff --git a/gs-blog/inc/frontEndFunctions.php b/gs-blog/inc/frontEndFunctions.php index 263735d..40257e0 100644 --- a/gs-blog/inc/frontEndFunctions.php +++ b/gs-blog/inc/frontEndFunctions.php @@ -98,10 +98,10 @@ function show_blog_post($slug, $excerpt=false) { # Lets load the template now and let it put all this together. if(isset($_GET['post'])) { - include(BLOGPLUGINFOLDER.'inc/layout-post.php'); + include(BLOGPLUGINFOLDER.'layout-post.php'); return true; } else { - include(BLOGPLUGINFOLDER.'inc/layout-list.php'); + include(BLOGPLUGINFOLDER.'layout-list.php'); return true; } } diff --git a/gs-blog/inc/layout-list.php b/gs-blog/layout-list.php similarity index 100% rename from gs-blog/inc/layout-list.php rename to gs-blog/layout-list.php diff --git a/gs-blog/inc/layout-post.php b/gs-blog/layout-post.php similarity index 100% rename from gs-blog/inc/layout-post.php rename to gs-blog/layout-post.php