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.

12 lines
608B

  1. <div class="row thread {{ ($key % 2) ? 'even' : 'odd' }}">
  2. <img class="icon" src="/img/thread-icons/{{ $thread->icon }}.gif" alt="{{ $thread->icon }}" />
  3. <a class="main" href="{{ route('thread', ['thread' => $thread->id]) }}">{{ $thread->title }}</a>
  4. <div class="meta">
  5. <a class="left">by {{ $thread->user->username }}, {{ $thread->postCount }} replies</a>
  6. <a class="right">last reply by {{ $thread->lastPost->user->username }}, {{ $thread->lastPost->dateDiff() }}</a>
  7. <div class="clearfix"></div>
  8. </div>
  9. <div class="clearfix"></div>
  10. </div>
  11. <hr class="textonly"/>