Tech Notes

Custom Title

Contents


Overview

In GitHub Pages, the default site title is often taken from the repository name. This can be overridden to display a custom title in the page header.

Contents


How it works

Most GitHub Pages sites (especially those using Jekyll) render the title from the site.title variable. If it is not defined, the system falls back to the repository name.

Contents


Configuration

To set a custom title, define it in the _config.yml file:

title: Tech Notes
description: Personal collection of technical notes

This will replace the default repository-based title in the site header.

Contents


Notes

Contents