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.

14 lines
503B

  1. <div class="row subforum">
  2. <h3>
  3. <a href="{{ route('subforum', ['subforum' => $subforum->id]) }}">{{ $subforum->name }}</a>
  4. </h3>
  5. <span>{{ $subforum->description }}</span>
  6. </div>
  7. <div class="row lastThread">
  8. <h4>
  9. <a href="{{ route('thread', ['thread' => $subforum->thread->id]) }}">{{ $subforum->thread->title }}</a>
  10. </h4>
  11. <span>{{ $subforum->thread->lastPost->user->username }} replied</span>
  12. <span>{{ $subforum->thread->lastPost->dateDiff() }}</span>
  13. </div>