Private
Public Access
1
0

first version with blog posts

This commit is contained in:
Sander Roosendaal
2018-10-24 20:10:53 +02:00
parent f519cdca62
commit 055f128639
7 changed files with 166 additions and 27 deletions

View File

@@ -0,0 +1,17 @@
{% load staticfiles %}
{% load rowerfilters %}
{% for blog in blogposts %}
<li class="frontitem">
<h3 class="midden">{{ blog.title|safe }}</h3>
<p class="midden">
<img src={{ blog.image }} height=150px;>
</p>
{{ blog.excerpt|safe }}
<p class="midden">
<a href={{ blog.link }}>
read more
</a>
</p>
</li>
{% endfor %}