0

このような配列があり、コンテンツを取得したいと考えています。

Array
(
    [0] => Array
        (
            [0] => 1
            [id] => 1
            [1] => Testnews
            [title] => Testnews
            [2] => Dies ist eine kleine <strong>Testnews!</strong>
            [text] => Dies ist eine kleine <strong>Testnews!</strong>
            [3] => 1
            [type] => 1
            [4] => 1
            [timestamp] => 1
            [5] => 0
            [status] => 0
        )

)

私は次のことを試しました:

                    {% for latest_news in news %}
                        {% for id, title in latest_news %}
                            id : {{ id }}
                            title : {{ title }}
                        {% endfor %}
                    {% endfor %}

それは機能しますが、これが正しい方法だとは思いません。

どのように見えるべきですか?

4

2 に答える 2