数字营销框架/typo3-template-engine-twig

将Twig模板引擎集成到数字营销框架中

2.1.0 2024-06-02 21:53 UTC

This package is auto-updated.

Last update: 2024-09-02 22:17:59 UTC


README

EXT:dmf_template_engine_twig覆盖了EXT:dmf_core的默认模板引擎

这将允许你在模板字段中使用Twig

手册

数据访问

可以直接使用字段名输出数据。示例

Hello {{ firstname }} {{ lastname }},

Thank you for your message!

此外,我们有一个数组,其中存储了所有字段。以下是如何访问数组的示例

{% for key,value in all_values %}
  {{ key }}: {{ value }}
{% endfor %}

Twig文档

Twig模板