Skip to content

Instantly share code, notes, and snippets.

@fsouza
Created August 1, 2010 05:26
Show Gist options
  • Save fsouza/502981 to your computer and use it in GitHub Desktop.
Save fsouza/502981 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}
{% block content %}
<dl>
{% for post in posts %}
<dt>{{ post.title }} (written by {{ post.user.username }})</dt>
<dd>{{ post.content }}</dd>
{% endfor %}
</dl>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment