A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

34 Zeilen
830B

  1. @extends('default')
  2. @section('title', 'Home')
  3. @section('breadcrumb')
  4. <a href="{{ route('index') }}">Home</a>
  5. @endsection
  6. @section('content')
  7. <div class="row subforums">
  8. <div class="cell left">
  9. @foreach($leftSubforums as $subforum)
  10. @include('partial.subforum')
  11. @endforeach
  12. </div>
  13. <div class="cell right">
  14. @foreach($rightSubforums as $subforum)
  15. @include('partial.subforum')
  16. @endforeach
  17. </div>
  18. </div>
  19. <div class="clearfix"></div>
  20. <div class="row stats">
  21. <span>Users: {{ $stat->users }}</span>
  22. <span>Threads: {{ $stat->threads }}</span>
  23. <span>Posts: {{ $stat->posts }}</span>
  24. <span>Ratings: {{ $stat->ratings }}</span>
  25. </div>
  26. @endsection
  27. @section('scripts')
  28. <link rel='stylesheet' type='text/css' href='/css/page/index.css'/>
  29. @endsection