A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

thread.blade.php 612B

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