diff --git a/resources/views/timeline/partial/new-form.blade.php b/resources/views/timeline/partial/new-form.blade.php deleted file mode 100644 index 3dfd37e79..000000000 --- a/resources/views/timeline/partial/new-form.blade.php +++ /dev/null @@ -1,82 +0,0 @@ -
-
-
{{__('Create New Post')}}
-
-
- -
- @csrf - - -
-
- - -
- - Max Size: @maxFileSize(). Supported formats: jpeg, png, gif, bmp. Limited to {{config('pixelfed.max_album_length')}} photos per post. - -
-
- -

- 0 - / - {{config('pixelfed.max_caption_length')}} -

-
-
- -
-
- -
- -
- - Set the visibility of this post. - -
-
- -
- - -
- - Please mark all NSFW and controversial content, as per our content policy. - -
-
- -
- -
- - No filter selected. - -
-
- - -
-
-
- -
-
-
\ No newline at end of file diff --git a/resources/views/timeline/personal.blade.php b/resources/views/timeline/personal.blade.php deleted file mode 100644 index 016727e58..000000000 --- a/resources/views/timeline/personal.blade.php +++ /dev/null @@ -1,68 +0,0 @@ -@extends('layouts.app') - -@push('scripts') - -@endpush - -@section('content') - -
-
- @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - - @include('timeline.partial.new-form') - -
- @foreach($timeline as $item) - - @include('status.template') - - @endforeach - @if($timeline->count() == 0) -
-
-
-

{{ __('timeline.emptyPersonalTimeline') }}

-
-
-
- @endif -
- - - -
- {{$timeline->links()}} -
- -
-
- - -@endsection diff --git a/resources/views/timeline/public.blade.php b/resources/views/timeline/public.blade.php deleted file mode 100644 index a84e54bd5..000000000 --- a/resources/views/timeline/public.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -@extends('layouts.app') - -@push('scripts') - -@endpush - -@section('content') - -
-
- @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - - @include('timeline.partial.new-form') - -
- @foreach($timeline as $item) - - @include('status.template') - - @endforeach -
- - - -
- {{$timeline->links()}} -
- -
-
- - -@endsection diff --git a/resources/views/timeline/template.blade.php b/resources/views/timeline/template.blade.php deleted file mode 100644 index 83737a4dd..000000000 --- a/resources/views/timeline/template.blade.php +++ /dev/null @@ -1,132 +0,0 @@ -@extends('layouts.app') - -@section('content') - - - -
-
-
- @if (session('status')) -
- {!! session('status') !!} -
- @endif - @if (session('error')) -
- {!! session('error') !!} -
- @endif - - -
- - @foreach($timeline as $item) - @if(is_null($item->in_reply_to_id)) - @include('status.template') - @endif - @endforeach - - @if($timeline->count() == 0) -
-
-
-

{{ __('timeline.emptyPersonalTimeline') }}

-
-
-
- @endif -
- - - -
- {{$timeline->links()}} -
- -
-
-
- - {{Auth::user()->username}}'s avatar - -
-

@{{Auth::user()->username}}

-

{{Auth::user()->name}}

-
-
- -
- -
- - {{-- --}} - - -
-
-
- -@endsection - -@push('scripts') - -@endpush \ No newline at end of file