A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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"/>