8 lines
202 B
Twig
8 lines
202 B
Twig
{% extends 'layouts/base.twig' %}
|
|
|
|
{% block content %}
|
|
{% for post in posts %}
|
|
{% include ['partials/tease-' ~ post.type ~ '.twig', 'partials/tease.twig'] %}
|
|
{% endfor %}
|
|
{% endblock %}
|