A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
623B

  1. @extends('default')
  2. @section('title', $user->username . ' Posts')
  3. @section('breadcrumb')
  4. <a href="{{ route('index') }}">Home</a>
  5. <a>></a>
  6. <a href="{{ route('users') }}">Users</a>
  7. <a>></a>
  8. <a href="{{ route('user', ['user' => $user->id]) }}">{{ $user->username }}</a>
  9. <a>></a>
  10. <a href="{{ route('user.posts', ['user' => $user->id]) }}">Posts</a>
  11. @endsection
  12. @section('content')
  13. {!! $paginator !!}
  14. @foreach($posts as $post)
  15. @include('partial/post')
  16. @endforeach
  17. {!! $paginator !!}
  18. @endsection
  19. @section('scripts')
  20. <link rel='stylesheet' type='text/css' href='/css/page/thread.css'/>
  21. @endsection