Custom links - Configuration

How to manage custom links into the primary navigation

Last modified 2025-08-06

ITADS

Available into settings.json, the customLinks object is an array that sets up personal links to place into the header of the primary navigation. Custom links menu progressively collapse: If links gets wider than their container, overflowed links are grouped into a sub menu.

Atom feed GitHub CodePen LinkedIn

An example of settings.json with custom links:

{
    "customLinks": [
        {
            "url": "/feed.xml",
            "text": "Atom feed"
        },
        {
            "url": "https://github.com/my-github-repo",
            "text": "GitHub"
        },
        {
            "url": "https://codepen.io/myname",
            "text": "CodePen"
        },
        {
            "url": "https://linkedin.com/myprofilename",
            "text": "LinkedIn"
        }
    ]
}