In your sites root folder you will find a file called config.toml
. Open this file with your text editor or IDE.
Sitewide configuration
- baseURL field for your website URL / domain. Add your site URL here. Remember, you need to add a trailing slash at the end of the URL.
- languageCode defines your global site language. For more information, see Official Hugo Docs.
- summaryLength decides how many words are in excerpts of your posts when they are displayed as a preview. The default
summaryLength
is 70 words. - theme sets up the used theme. If your theme is located in
my-project/themes/theme-name
folder, then the value for this parameter istheme-name
. - title is for the main title of your website.
Plugin Configuration
You can add third party plugins from here very easily, We create a loop for plugins, you will see two plugins loop here, first one is for css
and last one is for js
. just copy a loop item that you need and paste it in the bottom of the loop. and link correctly, after added a plugins, you maybe need to close the hugo server and run it again for rendered correctly.
Menu Configuration
[[menu.main]]
is the main loop, you can add your navigation item by copy and paste this line.name
attribute is for navigation item name.URL
is for the page url, just give the page name here, it will automatically add the base URL from your site. like if you want to give the about page url here, just typeabout
.weight
is for your navigation sorting, the smaller number weight will show first.
Parameter Configuration
Most parameters in config.toml
are commented. You can change the basic setup of the theme and add information or enable/disable features.
description
field is for your default meta description, it will show on your homepage and other page that have not any meta description on this page front-matter.author
is for site author name.contact_form_action
is your contact form action. it works with https://formspree.iocopyright
is your site copyright.