对于模板中的文章列表解析,如何完成类似twig中的: ``` {% for item in articles %} <li>{{ item.id }}</li> <li>{{ item.channel_name }}</li> <li>{{ item.title }}</li> <li>{{ item.hit }}</li> <li>{{ item.created_at|date("Y-m-d") }}</li> {% endfor %} ```