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

github.com/appernetic/hugo-nederburg-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoransv <support@appernetic.io>2018-08-31 23:39:03 +0300
committerGitHub <noreply@github.com>2018-08-31 23:39:03 +0300
commit516c7c6c43aa0c37bb7fdcec692a004273717e02 (patch)
treed0b4c8a475ecf1ce650e2c0daa12397912a5c4d4
parentf9aaac85a069e662a4d52352f9c51b360b3b13b3 (diff)
Update README.md
Add documentaion for multiple writers.
-rw-r--r--README.md27
1 files changed, 26 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6f0af90..ec83f00 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ Create `css/custom.css` in your `<<base dir>>/static` folder and add all your cu
### Comments
-The optional comments system is powered by [Disqus](https://disqus.com). If you want to enable comments, create an account in Disqus and write down your shortname.
+The optional comments system is powered by [Disqus](https://disqus.com). If you want to enable comments, create an account in Disqus and write down your shortname in the config file.
```toml
disqusShortname = "your-disqus-short-name"
@@ -70,6 +70,31 @@ Since this page will be static, you can use [formspree.io](//formspree.io/) as p
4. Click the confirm link in the email from [formspree.io](//formspree.io/)
5. You're done. Happy mailing!
+## Multiple Writers Features
+Thanks to Lukas Herman's PR there is now a multiple writers feature. In order to support multiple writers, an extra key, "writers" is added, in config.toml. The format looks like the following:
+
+```
+ [params.writers."Göran Svensson"]
+ link = "https://appernetic.io/"
+ email = "goran@molnsys.com"
+ bio = [
+ "Göran is an avid blogger and the founder of <a href='https://appernetic.io/'>Appernetic.io</a>. This is the author bio shown after posts."
+ ]
+ facebook = "full Göran profile url in facebook"
+ googleplus = "full profile url in googleplus"
+ twitter = "full profile url in twitter"
+ linkedin = "full profile url in linkedin"
+ stackoverflow = "full profile url in stackoverflow"
+ instagram = "full profile url in instagram"
+ github = "full profile url in github"
+ pinterest = "full profile url in pinterest"
+```
+
+Now you must have an author in the config for the author bio section to be visible. If you have a writer and set it in the markdown file it will override the author in the config. See the exampleSite folder for a working solution.
+
+
+
+
### Nearly finished
In order to see your site in action, run Hugo's built-in local server.