diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/config.toml b/config.toml index 298c018..73c7ddf 100644 --- a/config.toml +++ b/config.toml @@ -1,9 +1,11 @@ -# This file is for render site varibles and plugins -# don't remove this file. -# The presence of this file is for compatibility with Blogdown and Forestry. -# -# The actual configuration files are stored in the `config/_default/` folder. +baseURL = 'http://example.org/' +languageCode = 'en-us' +title = 'Boxfish Global' +theme = 'andromeda-light' +contentdir = "content" +layoutdir = "layouts" +publishdir = "public" ######################### site variables ############################## # customize your color and font from here. @@ -13,6 +15,32 @@ black = "#000000" light = "#FAFAFA" primary_color = "#FE6019" +# Social Accounts +[params.social] +Twitter = "Boxfishglobal" +LinkedIn = "Boxfishglobal" + +# Extras +[params.extra] +copyright = "Copyright © 2020 Boxfish Limited. All rights reserved. “Boxfish” and “Boxfish Global” are trademarks pending of Boxfish Limited." +poweredby = true +highlightjs = true +socialmarkup = true +toc = true +displayrssicon = true + +## Main Menu +[[menu.main]] + name = "blog" + weight = 100 + identifier = "blog" + url = "/blog/" +[[menu.main]] + name = "about" + identifier = "about" + weight = 200 + url = "/about/" + # font variable h1 = "48px" h1_md = "38px" diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..309ce64 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module examplesite.com + +go 1.18 + +require github.com/gethugothemes/hugo-modules/shortcodes/image v0.0.0-20220509155302-5976ca1fea3c // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..99bdeaa --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/gethugothemes/hugo-modules/shortcodes/image v0.0.0-20220509155302-5976ca1fea3c h1:dra8YUAPnksZ0ce3d8Dw50/bYA17VsnAVGfkbGY18nQ= +github.com/gethugothemes/hugo-modules/shortcodes/image v0.0.0-20220509155302-5976ca1fea3c/go.mod h1:HQLF/WH52nSjSIo3DeztUZ+wLj+UlgeR2dwgtE2EqUg=