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.

25 lines
610B

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