summaryrefslogtreecommitdiff
path: root/config.toml
blob: 65dbaead13e78a4378fd594c8d695d83933e20ef (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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
baseURL = "https://rogs.me/"
languageCode = "en-us"
title = "rogs"
theme = "archie"
staticDir = ["static"]
copyright = "© Roger Gonzalez"


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

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

  [[params.social]]
    name = "mail"
    url = "mailto:roger@rogs.me"
  [[params.social]]
    name = "git-commit"
    url = "https://git.rogs.me/"
  [[params.social]]
    name = "gitlab"
    url = "https://gitlab.com/rogs"
  [[params.social]]
    name = "linkedin"
    url = "https://linkedin.com/in/rogergonzalez21"
  [[params.social]]
    name = "rss"
    url = "https://rogs.me/index.xml"

  [[params.webring]]
    name = "hotline"
    url = "https://hotlinewebring.club/"
    nextUrl = "https://hotlinewebring.club/rogs/next"
    prevUrl = "https://hotlinewebring.club/rogs/previous"
  [[params.webring]]
    name = "nojs"
    url = "https://nojs.sugarfi.dev/"
    nextUrl = "https://nojs.sugarfi.dev/next.php?url=https://rogs.me/"
    prevUrl = "https://nojs.sugarfi.dev/prev.php?url=https://rogs.me/"
  [[params.webring]]
    name = "retronaut"
    url = "https://webring.dinhe.net/"
    nextUrl = "https://webring.dinhe.net/next/https://rogs.me"
    prevUrl = "https://webring.dinhe.net/prev/https://rogs.me"
  [[params.webring]]
    name = "devring"
    url = "https://devring.club/"
    nextUrl = "https://devring.club/sites/11/next"
    prevUrl = "https://devring.club/sites/11/prev"
  [[params.webring]]
    name = "geekring"
    url = "https://geekring.net/"
    nextUrl = "http://geekring.net/site/242/next"
    prevUrl = "http://geekring.net/site/242/previous"
  [[params.webring]]
    name = "theoldnet"
    url = "https://webring.theoldnet.com/"
    nextUrl = "https://webring.theoldnet.com/member/142f64c0e28d2272ed620c96265b2505/next/navigate"
    prevUrl = "https://webring.theoldnet.com/member/142f64c0e28d2272ed620c96265b2505/previous/navigate"

  [[params.projects.personal]]
    name = "montevideo.restaurant"
    url = "https://montevideo.restaurant/"
    description = "A restaurant index page for the city of Montevideo (Uruguay)."
    github = "https://github.com/rogsme/montevideo.restaurant"
    rogsgit = "https://git.rogs.me/montevideo.restaurant.git"
    gitlab = "https://gitlab.com/rogs/montevideo.restaurant"
  [[params.projects.personal]]
    name = "YAMS"
    url = "https://yams.media/"
    description = "A higly opinionated media server"
    gitlab = "https://gitlab.com/rogs/yams"
    rogsgit = "https://git.rogs.me/yams.git/"
  [[params.projects.personal]]
    name = "The Infinite Website"
    url = "https://theinfinitewebsite.com/"
    description = "A web application that dynamically generates HTML on runtime using ChatGPT and serves it in an async Flask application."
    gitlab = "https://gitlab.com/rogs/the-infinite-website"
    rogsgit = "https://git.rogs.me/the-infinite-website.git/"

  [[params.projects.work]]
    name = "Certn - Workday integration"
    url = "/resume/certn-workday/"
    description = "This is the main Workday integration for Certn."
    client = "lazer"
  [[params.projects.work]]
    name = "Certn - ADA DINER"
    url = "/resume/certn-ada-diner/"
    description = "An app that triggers crawls on demand, to check criminal records for a certain person."
    client = "lazer"
  [[params.projects.work]]
    name = "Certn - International framework"
    url = "/resume/certn-intl-framework/"
    description = "An app that acts like a bridge between their main app (Certn) and criminal background check providers (like the RCMP)."
    client = "lazer"
  [[params.projects.work]]
    name = "Volition"
    url = "/resume/volition/"
    description = "A series of crawlers for different screws and fasteners vendors."
    client = "tarmac"
  [[params.projects.work]]
    name = "CocaCola - Tus Tapas Valen"
    url = "/resume/tus-tapas-valen/"
    description = 'The main "Tus tapas valen" app for CocaCola Mexico.'
    client = "massive"
  [[params.projects.work]]
    name = "Axelerist"
    url = "/resume/axelerist/"
    description = "A web app that connects to an external API and displays the client’s inventory in a more friendly and ergonomic way."
    client = "vascar"
  [[params.projects.work]]
    name = "Knac"
    url = "/resume/knac/"
    description = "A job application startup, empathizing on assessments to recommend candidates to a specific job."
    client = "vascar"

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

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

[[menu.main]]
name = "Resume"
url = "/resume/"
weight = 3

[[menu.main]]
name = "Contact"
url = "/contact/"
weight = 4

[[menu.main]]
name = "Posts"
url = "/posts/"
weight = 5

[[menu.main]]
name = "Donate"
url = "/donate/"
weight = 6

[markup.goldmark.renderer]
  unsafe = true