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.

23 lines
806 B

  1. <div class="tweet">
  2. <div class="profile">
  3. <img src="{{ $tweet->player->photo }}" style="border-color: {{ '#'.$tweet->team->color }}">
  4. <span><a href="'https://twitter.com/'+tweet.player_username">{{ '@'.$tweet->player->twitter }}</a></span>
  5. </div>
  6. <div class="text">{!! 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. <div class="photo" style="background-image:url({{ $photo }})" data-featherlight="{{ $photo }}">
  11. <img src="{{ $photo }}">
  12. </div>
  13. @endforeach
  14. </div>
  15. <div class="multi-photo-clear"></div>
  16. @endif
  17. <a href="{{ $tweet->twitter_permalink() }}">{{ $tweet->localtime()->format('F j, g:ia') }}</a>
  18. </div>