summaryrefslogtreecommitdiff
path: root/config.toml
blob: d71eb44ef3197beb3da42685636ec07675e697c7 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
baseURL = 'https://leomurca.xyz'
title = 'Leonardo Murça'
defaultContentLanguage='en'

enableRobotsTXT = true

# Code Highlight
pygmentsstyle = "github"
pygmentscodefences = true
pygmentscodefencesguesssyntax = true

# RSS Feed
rssLimit = 20
copyright = "copyright"

[params]
  description = "home-page-description"
  featured_image = "/img/avatar.webp"

[author]
	name = "Leonardo Murça"
	email = "leo@leomurca.xyz"

[languages]
  [languages.en]
    languageCode = 'en'
    contentDir = 'content/en'

    [languages.en.menu]
      [[languages.en.menu.main]]
        name = "Home"
        url = "/"
        weight = 1

      [[languages.en.menu.main]]
        name = "All posts"
        url = "/posts"
        weight = 2

      [[languages.en.menu.main]]
        name = "Contact me"
        url = "/contact"
        weight = 3

      [[languages.en.menu.main]]
        name = "Donate"
        url = "/donate"
        weight = 4

  [languages.pt-br]
    languageCode = 'pt-br'
    contentDir = 'content/pt-br'

    [languages.pt-br.menu]
      [[languages.pt-br.menu.main]]
        name = "Página Inicial"
        url = "/pt-br"
        weight = 1

      [[languages.pt-br.menu.main]]
        name = "Publicações"
        url = "/pt-br/posts"
        weight = 2

      [[languages.pt-br.menu.main]]
        name = "Contato"
        url = "/pt-br/contato"
        weight = 3

      [[languages.pt-br.menu.main]]
        name = "Doe"
        url = "/pt-br/doe"
        weight = 4