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.

27 lines
1022 B

  1. <div class="tweet h-entry">
  2. <div class="profile u-author h-card">
  3. <img src="{{ $tweet->player->photo }}" style="border-color: {{ '#'.$tweet->team->color }}" class="u-photo">
  4. <span><a href="https://twitter.com/{{ $tweet->player->twitter }}" class="u-url p-name">{{ '@'.$tweet->player->twitter }}</a></span>
  5. </div>
  6. <div class="text e-content p-name">{!! Twitter::linkify($tweet->text) !!}</div>
  7. @if($tweet->photos())
  8. <div class="multi-photo photos-{{ count($tweet->photos()) }}">
  9. @foreach($tweet->photos() as $photo)
  10. <a class="photo" style="background-image:url({{ $photo }})" href="{{ $tweet->twitter_permalink() }}">
  11. <img src="{{ $photo }}" class="u-photo">
  12. </a>
  13. @endforeach
  14. </div>
  15. <div class="multi-photo-clear"></div>
  16. @endif
  17. <a href="{{ $tweet->twitter_permalink() }}" class="u-url">
  18. <time datetime="{{ $tweet->localtime()->format('c') }}" class="dt-published">
  19. {{ $tweet->localtime()->format('F j, g:ia') }}
  20. </time>
  21. </a>
  22. </div>