summaryrefslogtreecommitdiff
path: root/config.toml
blob: 1d6d84538ac153666c1a5b8670f73836e5ba9e73 (plain)
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
baseURL = "https://rogs.me/"
languageCode = "en-us"
title = "rogs"
theme = "archie"
staticDir = ["static"]
paginate=3 # articles per page
copyright = "© Rogs"


[permalinks]
  posts = "/:year/:month/:title/"

[params]
  author = "Roger Gonzalez"
  subtitle = "my blog, thoughts and other stuff"
  avatar = "avatar.png"
  mode = "dark"

  [[params.social]]
    name = "fas fa-envelope"
    url = "mailto:roger@rogs.me"
  [[params.social]]
    name = "fab fa-gitlab"
    url = "https://gitlab.com/rogs"
  [[params.social]]
    name = "fab fa-linkedin-in"
    url = "https://linkedin.com/in/rogergonzalez21"
  [[params.social]]
    name = "fab fa-keybase"
    url = "https://keybase.io/rogs"
  [[params.social]]
    name = "fas fa-rss"
    url = "https://rogs.me/index.xml"

[[menu.main]]
name = "About"
url = "/"
weight = 1

[[menu.main]]
name = "Projects"
url = "/projects"
weight = 2

[[menu.main]]
name = "Blog"
url = "/posts"
weight = 3

[[menu.main]]
name = "Tags"
url = "/tags"
weight = 4