I THINK THIS IS IT

This commit is contained in:
2024-03-30 19:31:39 +02:00
parent 6b7fd18171
commit 953eb9dabb
6 changed files with 26 additions and 28 deletions

View File

@@ -23,10 +23,10 @@
<div class="box" id="content-pane">
{% for post in posts %}
<div class="post">
<a href="{{post.url}}"><img src="{{post.image}}" alt="post img"></a>
<a href="{{post.origin_url}}"><img src="{{post.img_url}}" alt="post img"></a>
<span>
<a href="{{post.url}}"><h3>{{post.title}}</h3></a>
<p>{{post.description}}</p>
<a href="{{post.origin_url}}"><h3>{{post.title}}</h3></a>
<p>{{post.descr}}</p>
</span>
</div>
{% endfor %}