Configure

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 URL and metadata.

How to Configure Your Site

1. Update Site Details

  1. Open the config/_default/hugo.yaml file in your code editor.
  2. Update the baseURL with the URL of your site.
  3. Update the title.
baseURL: "https://example.com"
title: "My Hugo Site"

2. Update Theme Variables

Update Organization and Product Details

  1. Open the config/_default/params.yaml file in your code editor.
  2. Update the organization to reflect your organization’s name.
  3. Update the product to reflect your product’s name.

Update Feature Settings

This is optional, but you can update the features section to enable or disable certain 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