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

github.com/tblyler/light-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Blyler <tony@blyler.cc>2016-11-10 00:37:28 +0300
committerTony Blyler <tony@blyler.cc>2016-11-10 00:37:28 +0300
commit03a1955963cfc5ab825f7dab7361782f31f9461a (patch)
tree079c03343627f285b96806147fb4ff079fb64440
parent94d195d2e4f54d4ceba1b491f2f59c893a245368 (diff)
Update README with all config options
-rw-r--r--README.md22
-rw-r--r--exampleSite/config.toml1
2 files changed, 14 insertions, 9 deletions
diff --git a/README.md b/README.md
index e602a4f..fe259ea 100644
--- a/README.md
+++ b/README.md
@@ -16,16 +16,22 @@ The posts will be treated as blogs and pages will be treated with a similar fash
The following config options are available for displaying custom content...
```toml
-title = "Tony Blyler"
+baseurl = "https://example.org/"
+languageCode = "en-us"
+theme = "light-hugo"
+
+title = "Light Hugo"
+author = "John Doe"
+copyright = "© Copyright 2016 John Doe"
[Params]
-description = "Programmer, deal with it"
-logo = "/images/logo.png"
-email = "tblyler@example.com"
-github = "tblyler"
-facebook = "example"
-twitter = "tonyblyler"
-linkedin = "tblyler"
+ description = "Describe your website"
+ email = "john@example.org"
+ github = "tblyler"
+ twitter = "tonyblyler"
+ linkedin = "johndoe"
+ facebook = "johndoe"
+ logo = "/images/logo.png"
```
You can also append your own `<head>` and footer elements (just before the `</body>`).
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index aae609d..2ff1267 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -1,4 +1,3 @@
-# Site settings
baseurl = "https://example.org/"
themesDir = "../.."
languageCode = "en-us"