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.
Thanks!
Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
Solved by Jared View solution
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.
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.
You are a gentleman and a scholar! :tophat:
Log in to reply.
| Topic | Participants | Replies | Views | Activity |
|---|---|---|---|---|
| 4 | 193 | 2 months ago | ||
| 3 | 91 | 2 months ago | ||
| 11 | 451 | 3 months ago | ||
| 0 | 45 | 3 months ago | ||
| 5 | 125 | 3 months ago |