Skip to content

Instantly share code, notes, and snippets.

@simon-johansson
Last active December 16, 2015 10:49
Show Gist options
  • Save simon-johansson/5423223 to your computer and use it in GitHub Desktop.
Save simon-johansson/5423223 to your computer and use it in GitHub Desktop.
#WEBPROG #film_12 #snutt_6
{% block content %}
{% for post in allBlogPosts reversed %}
<h2><a href="/blog-post{{ post.id }}">{{ post.title|upper }}</a></h2>
<p>{{ post.content }}</p>
<i>Av: {{ post.author.first_name }} {{ post.author.last_name }} den {{ post.datetime }}</i></br></br>
{% endfor %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment