Created
September 4, 2014 15:53
-
-
Save mhoang/37fe846e1b7f0038fabb to your computer and use it in GitHub Desktop.
Twitter blade
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="social-stream"> | |
| <div class="reload-button-container"> | |
| <a class="reload-button"> | |
| <span class="half-circle"></span> | |
| <span class="circle"></span> | |
| <span class="cog"></span> | |
| <span class="arrows"></span> | |
| reload button | |
| </a> | |
| </div> | |
| @foreach ($twitter->items as $item) | |
| <div class="tweet-container"> | |
| @if ($item->cpbgroup) | |
| <article class="item video tile--news cpbgroup-tweet-true"> | |
| @else | |
| <article class="item video tile--news cpbgroup-tweet-false"> | |
| @endif | |
| <img alt="retweet" class="retweet" src="images/global/twitter__icon.png"/> | |
| <p class="screen-name">@ {{ $item->screen_name }}</p> | |
| <p class="tweet">{{ $item->tweet }}</p> | |
| <p class="user-id">{{ $item->user_id }}</p> | |
| <img class="profile-image" src="{{ $item->profile_image_url }}" /> | |
| <p class="time-ago">{{ $item->time_ago }}</p> | |
| </article> | |
| </div> | |
| @endforeach | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment