Skip to content

Instantly share code, notes, and snippets.

@jasongaylord
Created November 6, 2018 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongaylord/5d487ac6cad9e63dbf7bd08c604b43b1 to your computer and use it in GitHub Desktop.
Save jasongaylord/5d487ac6cad9e63dbf7bd08c604b43b1 to your computer and use it in GitHub Desktop.
@model List<TwitterViewComponent.Tweet>
<h3>Recent Tweets</h3>
<ul>
@foreach (var tweet in Model)
{
<li>
@tweet.Message<br/>
<a href="http://twitter.com/@tweet.Username/statuses/@tweet.Id">@(tweet.Timestamp)</a>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment