diff --git a/app/views/frontend/blog/index.blade.php b/app/views/frontend/blog/index.blade.php
deleted file mode 100755
index d86e78895b..0000000000
--- a/app/views/frontend/blog/index.blade.php
+++ /dev/null
@@ -1,46 +0,0 @@
-@extends('frontend/layouts/default')
-
-{{-- Page content --}}
-@section('content')
-@foreach ($posts as $post)
-
-
-
-
-
-
-
-
-
 }})
-
-
-
- {{ Str::limit($post->content, 200) }}
-
-
Read more...
-
-
-
-
-
-
-
-
-
-@endforeach
-
-{{ $posts->links() }}
-@stop
diff --git a/app/views/frontend/blog/view-post.blade.php b/app/views/frontend/blog/view-post.blade.php
deleted file mode 100755
index 293e0f1a61..0000000000
--- a/app/views/frontend/blog/view-post.blade.php
+++ /dev/null
@@ -1,91 +0,0 @@
-@extends('frontend/layouts/default')
-
-{{-- Page title --}}
-@section('title')
-{{ $post->title }} ::
-@parent
-@stop
-
-{{-- Update the Meta Title --}}
-@section('meta_title')
-
-@parent
-@stop
-
-{{-- Update the Meta Description --}}
-@section('meta_description')
-
-@parent
-@stop
-
-{{-- Update the Meta Keywords --}}
-@section('meta_keywords')
-
-@parent
-@stop
-
-{{-- Page content --}}
-@section('content')
-{{ $post->title }}
-
-{{ $post->content() }}
-
-
- Posted {{ $post->created_at->diffForHumans() }}
-
-
-
-
-
-{{ $comments->count() }} Comments
-
-@if ($comments->count())
-@foreach ($comments as $comment)
-
-
-
 }})
-
-
-
-
- {{ $comment->author->fullName() }}
- •
- {{ $comment->created_at->diffForHumans() }}
-
-
-
- {{ $comment->content() }}
-
-
-
-
-
-@endforeach
-@else
-
-@endif
-
-@if ( ! Sentry::check())
-You need to be logged in to add comments.
-Click here to login into your account.
-@else
-Add a Comment
-
-@endif
-@stop