Last active
December 16, 2015 10:49
-
-
Save simon-johansson/5423223 to your computer and use it in GitHub Desktop.
#WEBPROG #film_12 #snutt_6
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
{% 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