从块中获取内容

时间:2017-03-07 19:00:42

标签: bolt-cms

我目前正在建立一个以Bolt作为CMS的网站。但是现在我正在努力将内容从块中取出。我的contenttypes.yml:

blocks:
    name: Blocks
    singular_name: Block
    fields:
        title:
            type: text
            class: large
            group: "Block"
        slug:
            type: slug
            uses: [ title ]
        text-one:
            type: text
            label: Tekst 1
            group: content
        text-two:
            type: text
            label: Tekst 2
            group: content
        text-three:
            type: text
            label: Tekst 3
            group: content
        text-four:
            type: text
            label: Tekst 4
            group: content
        text-five:
            type: text
            label: Tekst 5
            group: content
        text-six:
            type: text
            label: Tekst 6
            group: content

我的Twig代码:

{% setcontent block_cta = "block/cta-nl" %}

我错过了什么吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

你好,你做的有点不对劲。如果你想从内容类型中获取值,你应该尝试这个

{% setcontent name = "blocks" %}

你应该调用内容类型的uppon。

如果你想测试这回馈的内容:{{ dump(test) }}

希望这会有所帮助。