Skip to content

Instantly share code, notes, and snippets.

@almost
Created March 17, 2013 17:06
Show Gist options
  • Save almost/5182511 to your computer and use it in GitHub Desktop.
Save almost/5182511 to your computer and use it in GitHub Desktop.
{% if tweets %}
<table class="table">
<thead>
<tr>
<th>User</th>
<th>Tweet</th>
<th>When?</th>
<th>View on Twitter</th>
</tr>
</thead>
<tbody>
{% for tweet in tweets %}
<tr>
<td><a href="https://twitter.com/{{ tweet.from_user
}}">@{{ tweet.from_user }}</a></td>
<td>{{ tweet.text|truncate(50) }}</td>
<td>{{ tweet.created_at }}</td>
<td>
<a
href="https://twitter.com/{{ tweet.from_user
}}/status/{{ tweet.id_str }}"
class="btn btn-small">
<i class="icon-arrow-right"></i>
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment