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.

24 lines
549B

  1. @extends('default')
  2. @section('title', $user->username)
  3. @section('breadcrumb')
  4. <a href="{{ route('index') }}">Home</a>
  5. <a>></a>
  6. <a href="{{ route('users') }}">Users</a>
  7. <a>></a>
  8. <a href="{{ route('user', ['user' => $user->id]) }}">{{ $user->username }}</a>
  9. @endsection
  10. @section('content')
  11. @include('partial/user')
  12. <div class="row spacer"></div>
  13. <div class="row">
  14. <p>Will add bios later, probably</p>
  15. </div>
  16. @endsection
  17. @section('scripts')
  18. <link rel='stylesheet' type='text/css' href='/css/page/user.css'/>
  19. @endsection