forked from jpcaruana/hugo-issue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
54 lines (44 loc) · 1.14 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
baseURL = "https://some.url.fr/"
defaultContentLanguage = "fr"
languageCode = "fr-fr"
title = "This is a blog"
theme = "hugo-coder"
paginate = 20
canonifyurls = true
pygmentsstyle = "bw"
pygmentscodefences = true
pygmentscodefencesguesssyntax = true
[outputs]
home = ["HTML", "RSS", "JSON"]
[taxonomies]
category = "categories"
tag = "tags"
bookmarktag = "bookmarktags"
[params]
author = "Jean-Philippe Caruana"
info = "Bienvenue sur mon site personnel"
description = "Jean-Philippe Caruana's personal website"
keywords = "blog,developer,personal"
avatarurl = "/img/avatar.jpg"
authorization_endpoint = "https://indieauth.com/auth"
token_endpoint = "https://tokens.indieauth.com/token"
webmention = "https://webmention.io/fr/webmention"
pingback = "https://webmention.io/fr/xmlrpc"
footercontent = ""
since = 2007
hidecredits = false
hidecopyright = false
math = false
# Menu links
[[menu.main]]
name = "Blog"
weight = 2
url = "/posts/"
[[menu.main]]
name = "Notes"
weight = 3
url = "/notes/"
[[menu.main]]
name = "Bookmarks"
weight = 4
url = "/bookmarks/"