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.

34 lines
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