From 5d08140ed04e88c4b4f27e7c3ce820dad931baf7 Mon Sep 17 00:00:00 2001 From: Olivier Roques Date: Sun, 2 Aug 2020 00:38:02 +0200 Subject: Add example website --- exampleSite/config.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 exampleSite/config.toml (limited to 'exampleSite/config.toml') diff --git a/exampleSite/config.toml b/exampleSite/config.toml new file mode 100644 index 0000000..ab94b95 --- /dev/null +++ b/exampleSite/config.toml @@ -0,0 +1,31 @@ +title = "Researcher" +baseURL = "https://ojroques.github.io" +theme = "researcher" + +[params] + author = "Olivier Roques" + description = "A Hugo template." + favicon = "favicon.ico" + [params.footer] + text = "By Olivier Roques" + url = "https://github.com/ojroques/hugo-researcher" + +[permalinks] + "/" = "/:filename" + +[menu] + [[menu.navbar]] + name = "About" + url = "/about" + weight = 1 + [[menu.navbar]] + name = "Resume" + url = "/resume.pdf" + weight = 2 + [[menu.navbar]] + name = "Contact" + url = "/contact" + weight = 3 + +[markup.goldmark.renderer] + unsafe= true -- cgit v1.2.3