Replacing Title for Homepage

I’m trying to replace the main “Home” with a customized phrase without changing the title of the page. Is it possible to do that? I’m not sure where to customize that.

My site is using the ‘Clean Blog’ theme.

http://www.accrualbowtie.com/

Thanks!

Hi
There are a couple of ways to do this but I assuming the home page title isn’t going to be changed once set so this is what I would do.

in header.html.twig ->
line 14

Change:

<h1>{{ page.title }}</h1>

to:

{% if page.home %}
<h1>Your homepage title here</h1>
{% else %}
<h1>{{ page.title }}</h1>
{% endif %}

Hopefully that’ll do the trick.

1 Like

You are a gentleman and a scholar! :tophat: