Private
Public Access
1
0

blogs to left menu

This commit is contained in:
Sander Roosendaal
2019-05-28 17:16:37 +02:00
parent 47ce7ec206
commit cc40f589c3
5 changed files with 103 additions and 56 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 %}