我希望在一个Twig-File中使用页脚。
这些是我的地区:
regions:
nav: Navigation
content: Content
content_top: 'Content Top'
content_bottom: 'Content Bottom'
front_one: 'Front One'
front_two: 'Front Two'
footer: Footer
我尝试在我的主题的模板文件夹中创建一个region--footer.html.twig
文件,但这并不起作用。
有什么建议吗?
答案 0 :(得分:0)
在drupal 8中的新模板指法后,我成功了:
在我的page.html.twig
最底层:
{% if page.footer %}
{{ page.footer }}
{% endif %}
然后使用内容
创建了region--footer.html.twig
{% if content %}
<div{{ attributes }}>
{{ content }}
</div>
{% endif %}
我从core/modules/system/templates/region.html.twig
我认为这是在Drupal 8中覆盖模板的正确方法