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.

29 lines
974B

  1. <a id="post-{{ $post->id }}"></a>
  2. @include('partial/post-info', ['user' => $post->user, 'postId' => $post->id, 'date' => $post->dateDiff()])
  3. <div class="row post">
  4. <div class="inner">
  5. <div class="postContent">
  6. <div class="marginBreak"></div>
  7. {!! $post->render() !!}
  8. </div>
  9. <div class="postRatings">
  10. <table class="ratings" cellspacing="0" cellpadding="0">
  11. <tr>
  12. @foreach ($post->ratings as $rating)
  13. <td align="center">
  14. <img src="{{ $rating->icon() }}" alt="{{ $rating->name }}" />
  15. <br/>{{ $rating->count }}<br/>
  16. </td>
  17. @endforeach
  18. </tr>
  19. </table>
  20. </div>
  21. </div>
  22. </div>
  23. @foreach($post->bans as $ban)
  24. @include('partial/ban', ['ban' => $ban])
  25. @endforeach
  26. <div class="row spacer">
  27. <hr class="textonly"/>
  28. </div>