AH-SID
I want to make my xtblog template, but in some part (in bold text) I don't know what should I do.
Here my code:
{% block entries_list %}
{% for entry in data.entries %}
<div class="item">
<div class="box1">
<h2 class="title"> <a href="
{{ entry.url without any query }}">{{ entry.title }}</a> </h2>
</div>
<div class="description">
{{ entry.content short description }}</div>
<div class="box2">
{% if there are have an image %}
{{ first.image }}
{% else %}
<img src="/default.png" />
{% endif %}
</div>
<div class="box3">
<span>{{ entry.comments_count }} Comments</span>
</div>
</div>
{% endfor %}
{% endblock %}