Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/felicianotech/hugo-theme-lean-launch-page.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo N Feliciano <FelicianoTech@gmail.com>2021-03-20 06:27:42 +0300
committerGitHub <noreply@github.com>2021-03-20 06:27:42 +0300
commite2b2ad0aa8ee0e0bdaa4f37814fef56f91872f60 (patch)
treec615dbc9d52e9f2e16e7d9d18a69b714fa016a5a
parente0a2045b6d2efa8c37bdd92a496e73eb5a297e09 (diff)
Switch default config to YAML (#23)
-rw-r--r--exampleSite/config.toml20
-rw-r--r--exampleSite/config.yml20
2 files changed, 20 insertions, 20 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
deleted file mode 100644
index 1458609..0000000
--- a/exampleSite/config.toml
+++ /dev/null
@@ -1,20 +0,0 @@
-baseurl = "https://themes.gohugo.io/theme/hugo-theme-lean-launch-page/"
-title = "My New Product"
-author = "Ricardo N Feliciano (FelicianoTech)"
-canonifyurls = true
-paginate = 3
-
-theme = "hugo-theme-lean-launch-page"
-
-googleAnalytics = "UA-123456"
-
-[params]
-tagline = "We're launching a new, better solution."
-mailchimpURL = "//my-account.mailchimp.com/my-subscriber-url"
-
-twitter = "https://twitter.com/MyNewProduct"
-facebook = "https://facebook.com/MyNewProduct"
-instagram = "https://instagram.com/MyNewProduct"
-youtube = "https://www.youtube.com/channel/MyNewChannel"
-linkedin = "https://www.linkedin.com/company/MyNewProduct"
-github = "https://github.com/MyNewProduct"
diff --git a/exampleSite/config.yml b/exampleSite/config.yml
new file mode 100644
index 0000000..07c2b93
--- /dev/null
+++ b/exampleSite/config.yml
@@ -0,0 +1,20 @@
+baseurl: "https://themes.gohugo.io/theme/hugo-theme-lean-launch-page/"
+title: "My New Product"
+author: "Ricardo N Feliciano (FelicianoTech)"
+canonifyurls: true
+paginate: 3
+
+theme: "hugo-theme-lean-launch-page"
+
+googleAnalytics: "UA-123456"
+
+params:
+ tagline: "We're launching a new, better solution."
+ mailchimpURL: "//my-account.mailchimp.com/my-subscriber-url"
+
+ twitter: "https://twitter.com/MyNewProduct"
+ facebook: "https://facebook.com/MyNewProduct"
+ instagram: "https://instagram.com/MyNewProduct"
+ youtube: "https://www.youtube.com/channel/MyNewChannel"
+ linkedin: "https://www.linkedin.com/company/MyNewProduct"
+ github: "https://github.com/MyNewProduct"