How to give index.html a title other than site title

Hi , I wanted to add a title to the main page of the site , other than the title which is in the comfig.toml.
how should I do this?

content/_index.md

+++
title = "Title for Home Page"
date = 2021-01-01T00:00:00-00:00
draft = false
+++

Then in your template reference {{ .Title }} instead of {{ .Site.Title }}.

1 Like

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