After you have locally installed Hugo and deployed a copy of this theme, you can start configuring your site. This guide will walk you through the basics of configuring your site, including setting the site address (URL) and metadata.
How to configure your site #
1. Update site details #
- Open the
config/_default/hugo.yaml
file in your code editor. - Update the
baseURL
with the address of your site. - Update the
title
.
baseURL: "https://example.com"
title: "My Hugo Site"
2. Update theme variables #
Update organization and product details #
- Open the
config/_default/params.yaml
file in your code editor. - Update the
organization
to reflect your organization’s name. - Update the
product
to reflect your product’s name.
Update feature settings #
You can optionally update the features
section to enable or disable certain theme features.
logo: '/images/milo.png'
topNav:
globalLinks:
display: true
links:
- title: 'Home'
url: '/'
- title: 'Get Started'
url: '/get-started/'
dropdown:
display: true
name: "Dropdown"
url: "/"
links:
- name: "About Us"
url: "/about"
- name: "Services"
url: "/services"
- name: "Contact"
url: "/contact"
names:
organization: 'Emdash'
product: 'MiloDocs'
version:
major: 0
minor: 0
patch: 3
article:
childArticles:
display: true
count: 7
titleTrunc: 90
descTrunc: 90
nextPrev:
display: true
trunc: 35
chat:
display: true
toc:
display: true