From 54894227f04e754bb58e6d7ba53ee57399df05bc Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 25 Nov 2013 01:02:27 -0500 Subject: [PATCH] Removed unneeded --- app/views/frontend/blog/index.blade.php | 46 ----------- app/views/frontend/blog/view-post.blade.php | 91 --------------------- 2 files changed, 137 deletions(-) delete mode 100755 app/views/frontend/blog/index.blade.php delete mode 100755 app/views/frontend/blog/view-post.blade.php 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...

-
-
- - -
-
-

-

- by {{ $post->author->first_name }} - | {{ $post->created_at->diffForHumans() }} - | {{ $post->comments()->count() }} Comments -

-
-
-
-
- -
-@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

-
- - - - -
- - {{ $errors->first('comment', ':message') }} -
- - -
-
- -
-
-
-@endif -@stop