在 Drupal 8 中删除欢迎使用

Remove Welcome to in Drupal 8

如何从 Drupal 8 首页的 header 标题中删除 "Welcome to"

在 drupal 7 中,您只需添加 page.tpl.php 这部分代码:

<?php if (!$is_front){
print render($page['content']);
} ?>

在D8首页是一个视图。要更改首页的标题,请转到 admin/structure/views/view/frontpage,找到 Global: Title override link

打开它,它将允许设置或删除自定义首页标题。

url/节点的默认视图我们保持原样。

在page.html.twig中我们输出除内容块之外的所有块:

{% if is_front %}
  {{ page.content.breadcrumbs }}
  {{ page.content.page_title }}
  {{ page.content.local_tasks }}
  {{ page.content.help }}
  {{ page.content.local_actions }}
  {#{{ page.content.content }}#} < no content
{% else %}
  {{ page.content }}
{% endif %}

页-title.html.twig

{% if title %}
    {# nothing #}
{% else %}  {# for other pages #}
    <h1{{ title_attributes.addClass('page-header') }}>{{ title }}</h1>
{% endif %}