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.

16 lines
560B

  1. <div class="row postInfo {{ $user->postInfoClasses() }}">
  2. <div class="userBackground">
  3. <img src="{{ $user->background }}" alt="" />
  4. </div>
  5. <div class="userForeground">
  6. <img class="avatar" src="{{ $user->avatar }}" alt="" height="32px" />
  7. <a href="{{ route('user', ['user' => $user->id]) }}" class="username">
  8. {{ $user->username }}
  9. @if ($user->banned)
  10. <b>(Banned)</b>
  11. @endif
  12. </a>
  13. <a class="date" href="#post-{{ $postId }}">{{ $date }}</a>
  14. </div>
  15. </div>