如何从Drupal 8首页的标题标题中删除“欢迎使用”
在drupal 7中你只需在page.tpl.php中添加这部分代码:
<?php if (!$is_front){
print render($page['content']);
} ?>
答案 0 :(得分:12)
在D8首页是一个视图。要更改首页的标题,请转到admin / structure / views / view / frontpage,找到全局:标题覆盖链接
打开它,它将允许设置或删除自定义首页标题。
答案 1 :(得分:0)
带有url / node的默认视图我们保持不变。
在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 %}
page-title.html.twig
{% if title %}
{# nothing #}
{% else %} {# for other pages #}
<h1{{ title_attributes.addClass('page-header') }}>{{ title }}</h1>
{% endif %}