{% for post in postlist %}
  1. {% if post.data.image %} {{ post.data.image.alt }} {% endif %}

    {{ post.data.title }}

      {% for tag in post.data.tags %}
    • {{ tag }}
    • {% endfor %}
  2. {% endfor %}