# Toml config title not in url

**URL:** https://discourse.gohugo.io/t/toml-config-title-not-in-url/54793
**Category:** support
**Created:** [May 19, 2025, 6:45pm UTC](https://discourse.gohugo.io/t/toml-config-title-not-in-url/54793 "2025-05-19T18:45:31Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![malde11](https://avatars.discourse-cdn.com/v4/letter/m/9fc348/32.png) [@malde11](https://discourse.gohugo.io/u/malde11)
#### Post date: [May 19, 2025, 6:45pm UTC](https://discourse.gohugo.io/t/toml-config-title-not-in-url/54793/1 "2025-05-19T18:45:31Z")

</div>

Hi,  
my website title is only on the homepage and not other pages. Now, I have only “logos” and  
what I want is “examplesite - logos”.

Here is my [repo](https://github.com/malde11/kettenbeil).. 😋

**edit:**

hugo toml:

```auto
title = 'example'

```

content:

```auto
title = "Logos"

```

---

<div class="post-metadata">

### Author: ![irkode](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/irkode/32/26135_2.png) [@irkode](https://discourse.gohugo.io/u/irkode)
#### Post date: [May 19, 2025, 7:31pm UTC](https://discourse.gohugo.io/t/toml-config-title-not-in-url/54793/2 "2025-05-19T19:31:37Z")

</div>

I don’t think you want to duplicate the title on your Homepages, so in your `baseof.html` change the `<title>` tag to something like that:

```auto
<title>
   {{- if .IsHome -}}
      {{- site.Title -}}
   {{- else -}}
      {{- site.Title }} - {{ .Title -}}
   {{- end -}}
</title>

```

---

<div class="post-metadata">

### Author: ![malde11](https://avatars.discourse-cdn.com/v4/letter/m/9fc348/32.png) [@malde11](https://discourse.gohugo.io/u/malde11)
#### Post date: [May 19, 2025, 7:43pm UTC](https://discourse.gohugo.io/t/toml-config-title-not-in-url/54793/3 "2025-05-19T19:43:54Z")

</div>

cool.. thanks 😎

---

<div class="post-metadata">

### Author: ![system](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/system/32/1_2.png) [@system](https://discourse.gohugo.io/u/system)
#### Post date: [May 21, 2025, 7:43pm UTC](https://discourse.gohugo.io/t/toml-config-title-not-in-url/54793/4 "2025-05-21T19:43:55Z")

</div>

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.
