在drupal 8中,我如何将标题隐藏在头版?标题是通过页面标题.html.twig通过下面的代码呈现的
{% if title %}
<h1{{ title_attributes.addClass('page-header') }}>{{ title }}</h1>
{% endif %}我想包装它如果不是头版条件,但不知道语法。
发布于 2018-01-31 09:57:30
为此,可以使用is_front变量
{% if not is_front %}your code{% endif %}发布于 2018-01-31 10:07:42
标题显示在一个块中。转到块布局(/admin/structure/ block ),查找块“页面标题”,单击“配置”并设置"Pages“上的可见性以隐藏<front>:

https://drupal.stackexchange.com/questions/254810
复制相似问题