Changed projects shortcodes

This commit is contained in:
Roger Gonzalez 2023-01-14 13:44:20 -03:00
parent ca4fd9e21f
commit 97b4dd36c3
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6
5 changed files with 79 additions and 12 deletions

View File

@ -5,7 +5,6 @@ theme = "archie"
staticDir = ["static"] staticDir = ["static"]
paginate=3 # articles per page paginate=3 # articles per page
copyright = "© Roger Gonzalez" copyright = "© Roger Gonzalez"
description = "my website."
[permalinks] [permalinks]
@ -33,6 +32,47 @@ description = "my website."
name = "fas fa-rss" name = "fas fa-rss"
url = "https://rogs.me/index.xml" url = "https://rogs.me/index.xml"
[[params.projects.personal]]
name = "YAMS"
url = "https://yams.media/"
description = "A higly opinionated media server."
[[params.projects.work]]
name = "Certn - Workday integration"
url = "/projects/certn-workday/"
description = "This is the main Workday integration for Certn."
client = "lazer"
[[params.projects.work]]
name = "Certn - ADA DINER"
url = "/projects/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 = "/projects/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 = "/projects/volition/"
description = "A series of crawlers for different screws and fasteners vendors."
client = "tarmac"
[[params.projects.work]]
name = "CocaCola - Tus Tapas Valen"
url = "/projects/tus-tapas-valen/"
description = 'The main "Tus tapas valen" app for CocaCola Mexico.'
client = "massive"
[[params.projects.work]]
name = "Axelerist"
url = "/projects/axelerist/"
description = "A web app that connects to an external API and displays the clients inventory in a more friendly and ergonomic way."
client = "vascar"
[[params.projects.work]]
name = "Knac"
url = "/projects/knac/"
description = "A job application startup, empathizing on assessments to recommend candidates to a specific job."
client = "vascar"
[[menu.main]] [[menu.main]]
name = "Home" name = "Home"
url = "/" url = "/"
@ -43,20 +83,20 @@ name = "Resume"
url = "/resume" url = "/resume"
weight = 2 weight = 2
[[menu.main]] # [[menu.main]]
name = "Projects" # name = "Projects"
url = "/projects" # url = "/projects"
weight = 3 # weight = 3
[[menu.main]] [[menu.main]]
name = "Posts" name = "Posts"
url = "/posts" url = "/posts"
weight = 4 weight = 3
[[menu.main]] [[menu.main]]
name = "Contact" name = "Contact"
url = "/contact" url = "/contact"
weight = 5 weight = 4
[markup.goldmark.renderer] [markup.goldmark.renderer]
unsafe = true unsafe = true

View File

@ -23,8 +23,4 @@ it.
# My personal projets # My personal projets
{{< personal-projects >}}
<dl>
<dt><a href="https://yams.media">YAMS</a></dt>
<dd>A higly opinionated media server. <a href="https://gitlab.com/rogs/yams"><img src="/gitlab-small.png"/></a></dd>
</dl>

View File

@ -40,6 +40,10 @@ employees. I was responsible of a big integration with
contract for Certn. In this project used Django, Django REST Framework, Docker, contract for Certn. In this project used Django, Django REST Framework, Docker,
PostgreSQL, Github Actions and Jenkins. PostgreSQL, Github Actions and Jenkins.
### Projects:
{{< work-projects client=lazer >}}
## [Tarmac](https://tarmac.io) ## [Tarmac](https://tarmac.io)
**Senior Backend Developer** **Senior Backend Developer**
@ -50,6 +54,10 @@ Volition we developed a crawler that extracts information from different pages
in order to build a "super market place" for a specific product. In this project in order to build a "super market place" for a specific product. In this project
we used Docker, TypeScript, NodeJS, PostgreSQL, Google Cloud, and Kubernetes. we used Docker, TypeScript, NodeJS, PostgreSQL, Google Cloud, and Kubernetes.
### Projects:
{{< work-projects client=tarmac >}}
## [Massive](https://massive.ag) ## [Massive](https://massive.ag)
**Senior Backend Developer** **Senior Backend Developer**
@ -64,6 +72,10 @@ with ReactJS, Redux and redux-observable, but then I moved to the Backend. I had
to plan a big refactor while still working on new Backend functionalities. The to plan a big refactor while still working on new Backend functionalities. The
Backend is built using Python, Django, PostgreSQL, AWS, and AWS S3 Backend is built using Python, Django, PostgreSQL, AWS, and AWS S3
### Projects:
{{< work-projects client=massive >}}
## [Vascar Solutions](https://vascarsolutions.com/) ## [Vascar Solutions](https://vascarsolutions.com/)
**Backend Developer** **Backend Developer**
@ -79,6 +91,10 @@ worked on the backend, managing the API connection, working on an API wrapper
and user management. The app was made with NodeJS, Express, MongoDB, Mocha, and user management. The app was made with NodeJS, Express, MongoDB, Mocha,
CircleCI, Heroku and AWS. CircleCI, Heroku and AWS.
### Projects:
{{< work-projects client=vascar >}}
# Education # Education
[**Univesidad Tecnológica del Centro (UNITEC)**](https://portal.unitec.edu.ve/) [**Univesidad Tecnológica del Centro (UNITEC)**](https://portal.unitec.edu.ve/)

View File

@ -0,0 +1,6 @@
<dl>
{{- range $index, $key := .Site.Params.Projects.Personal -}}
<dt><a href="{{ $key.url }}">{{ $key.name }}</a></dt>
<dd>{{ $key.description }}</dd>
{{- end -}}
</dl>

View File

@ -0,0 +1,9 @@
{{- $client := .Get "client" -}}
<dl>
{{- range $index, $key := .Site.Params.Projects.Work -}}
{{- if eq $client $key.client -}}
<dt><a href="{{ $key.url }}">{{ $key.name }}</a></dt>
<dd>{{ $key.description }}</dd>
{{- end -}}
{{- end -}}
</dl>