Created
December 24, 2009 13:22
-
-
Save bulkan/263175 to your computer and use it in GitHub Desktop.
This file contains 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
{% if tweets %} | |
<div class='latest' style='display:none;'> | |
{% for tweet in tweets %} | |
<div> | |
<h1><a href="http://twitter.com/{{ tweet.username }}/status/{{ tweet.id }}" class="more">{{ tweet.username }}</a> </h1> | |
<div class="entry"> | |
<p> | |
<img align='left' height=45 width=48 src="{{ tweet.profile_image_url }}"></img> | |
<span> {{ tweet.text }}</span> | |
</p> | |
</div> | |
</div> | |
{% endfor %} | |
<script> | |
window.latestTweet = {{ tweets.0.received_at }}; | |
</script> | |
</div> | |
{% endif %} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment