Skip to content

Instantly share code, notes, and snippets.

@bulkan
Created December 24, 2009 13:22
Show Gist options
  • Save bulkan/263175 to your computer and use it in GitHub Desktop.
Save bulkan/263175 to your computer and use it in GitHub Desktop.
{% 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