summary refs log tree commit diff
path: root/config.toml
blob: 390599f14e6f798ecc015b047cc59780910505fd (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
baseURL = "https://venomade.com"
languageCode = "en"
title = "venomade"
# theme = "color-your-world"
theme = "hello-friend-ng"

disableRSS = true 
# Used only in the RSS file
# copyright = "Copyright © 2021, John Doe; All rights reserved."

enableEmoji = true
enableRobotsTXT = true
enableInlineShortcodes = true

[server]
  [[server.headers]]
    for = '/**'
    [server.headers.values]
      Content-Security-Policy = 'script-src venomade.com'
      Referrer-Policy = 'strict-origin-when-cross-origin'
      X-Content-Type-Options = 'nosniff'
      X-Frame-Options = 'DENY'
      X-XSS-Protection = '1; mode=block'

[params]
  dateform        = "Jan 2, 2006"
  dateformShort   = "Jan 2"
  dateformNum     = "02-01-2006"
  dateformNumTime = "02-01-2006 15:04"

  enableGlobalLanguageMenu = true

  [params.logo]
    logomark = "λ"
    logotext = "~/venomade/"
    logoCursorColor = "#b7bdf8"
    logoCursorPathname = true
  [params.portrait]
    path     = "/res/venomade_pfp.jpg"
    alt      = "Portrait"
    maxWidth = "200px"

  [[params.social]]
    name = "twitter"
    url  = "https://twitter.com/venomade_"
  
  [[params.social]]
    name = "email"
    url  = "./about"

  [[params.social]]
    name = "github"
    url  = "https://github.com/venomade"

  [[params.social]]
    name = "youtube"
    url  = "https://youtube.com/@venomade"

  [[params.social]]
    name = "bluesky"
    url  = "https://bsky.app/profile/venomade.com"

  [[params.social]]
    name = "mastodon"
    url  = "https://mas.to/@venomade"

[venomade]

  [languages.en]
  
    languageName = "English 🇬🇧"

    [languages.en.menu]

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

      [[languages.en.menu.main]]
        name = "Git"
        weight = 2
        url = "https://git.venomade.com"

      [[languages.en.menu.main]]
        name = "Articles"
        weight = 3
        url = "articles/"
      
      [[languages.en.menu.main]]
        name = "About"
        weight = 4
        url = "about/"

    [languages.pt-br]
    
      languageName  = "Português 🇧🇷"
      
      # copyright = " "

      [languages.pt-br.params]        
        description = "Sítio pessoal de Venomade"

        # footerText = [ " " ]

        [languages.pt-br.params.author]
          name         = "Venomade"
          # description  = "Algum horror indescritível."
        
        [languages.pt-br.params.notFound]
          title         = "404"
          description   = "Essa página não foi encontrada."
          paragraph     = "Página não encontrada. Clique em <a href=\"..\"><b style=\"color: var(--accent);\">Sobre</b></a> para acessar a página inicial."
        
      [languages.pt-br.menu]

        [[languages.pt-br.menu.main]]
          name = "Início"
          weight = 1
          url = "/"

        [[languages.pt-br.menu.main]]
          name = "Git"
          weight = 2
          url = "https://git.venomade.com"

        [[languages.pt-br.menu.main]]
          name = "Artigos"
          weight = 3
          url = "articles/"
        
        [[languages.pt-br.menu.main]]
          name = "Sobre"
          weight = 4
          url = "about/"