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.

22 lignes
468B

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