From 8d93b62af670e6c0ea37df64a445b5c6e4be2bae Mon Sep 17 00:00:00 2001 From: Derek <42170307+2-REC@users.noreply.github.com> Date: Thu, 18 Oct 2018 14:51:19 +0700 Subject: Update config.toml Added some info... --- exampleSite/config.toml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 5d5ed1a..c5edade 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -1,4 +1,7 @@ -# For more information take a look at the "README.md". +# For more information look at "README.md". + +# GLOBAL SITE SETTINGS +# Parameters used by HUGO to configure the site's global settings. baseurl = "https://example.org/" languageCode = "en-us" @@ -8,12 +11,17 @@ theme = "hugo-myportfolio-theme" [params] - # File(s) containing overriden CSS variables (OPTIONAL) + # GENERAL SITE PARAMETERS + # Parameters used by the site at the global level. + + # File(s) containing overriden CSS variables (can have more than 1) (OPTIONAL) custom_css = [ "custom.css" ] # ---------- - # HTML HEAD METADATA + # SITE METADATA + # Parameters used to configure metadata in the HTML "head" section. + [params.meta] # To provide some metadata for search engines (OPTIONAL) author = "" @@ -25,12 +33,14 @@ theme = "hugo-myportfolio-theme" # ---------- # HOMEPAGE + # Define the sections and the order in which they appear (MANDATORY) [params.homepage] sections = [ "home", "about", "services", "skills", "projects", "contact" ] # ---------- - # NAVIGATION MENU (OPTIONAL) + # NAVIGATION MENU + # Define the navigation bar entries and the order in which they appear (OPTIONAL) [params.navigation] # Brand (OPTIONAL - but required if want HOME button) @@ -57,7 +67,7 @@ theme = "hugo-myportfolio-theme" # projects = [ { section = "", label = "" }, ... ] # ! - Values for "sections" in "projects" must be the same as used in "projects.params". # (& must correspond to the section directories) - [params.navigation.links] + [params.navigation.links] about = "ABOUT" services = "SERVICES" skills = "SKILLS" -- cgit v1.2.3