Compare commits

..

No commits in common. "bb2af24817bde0569a7cce572b06ea338abf3e4a" and "4abd6038c1aae6b33d06900eca95affe94bf44e6" have entirely different histories.

5 changed files with 25 additions and 18 deletions

View File

@ -3,20 +3,20 @@ baseURL = "https://resume.shockrah.xyz"
languageCode = "en-us"
theme = "resume"
enableEmoji = true
[markup.goldmark.renderer]
unsafe= true
# Actual site/content parameters
[params]
name = "Alejandro"
description = "Maker of things"
description = "Friendly Neighborhood Developer and Soda Maker"
title = "Hi I'm Alejandro"
# Social medias
linkedin = "https://www.linkedin.com/in/alejandro-santillana-foss/"
git = "https://git.shockrah.xyz/shockrah"
gitlab = "https://git.shockrah.xyz/tempersama"
twitch = "https://twitch.tv/shockrah"
mastodon = "https://mastodon.social/@tempertv"
# Skills or something idk

View File

@ -5,12 +5,4 @@ title: Site Reliability Engineer
rank: -4
---
**:page_with_curl: Responsibilities**
* Designed architecture for highly available database solution and built it with automated CI/CD systems such as Terraform.
* Documented automated solutions and support specifications for on boarding new team members
* Coordinated support and maintenance efforts during on-call rotations across multiple development teams
> **:toolbox: Tools**
* `Terraform, AWS, Git, Python, Ansible, Shell, Jira, Confluence`

View File

@ -1,6 +1,6 @@
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link rel="shortcut icon" type="image/png" href="{{ .Site.BaseURL }}/images/favicon.png">

View File

@ -1,6 +1,21 @@
<a class="socials" href="{{.Site.Params.Git}}">
<i class="bi bi-git"></i>
{{ if .Site.Params.Gitlab }}
<a class="socials" href="{{.Site.Params.Gitlab}}">
<i class="fab fa-gitlab"></i>
</a>
{{ end }}
{{ if .Site.Params.Linkedin }}
<a class="socials" href="{{.Site.Params.Linkedin}}">
<i class="bi bi-linkedin"></i>
<i class="fab fa-linkedin-in"></i>
</a>
{{ end }}
{{ if .Site.Params.Twitch }}
<a class="socials" href="{{.Site.Params.Twitch}}">
<i class="fab fa-twitch"></i>
</a>
{{ end }}
{{ if .Site.Params.Mastodon }}
<a class="socials" href="{{.Site.Params.Mastodon}}">
<i class="fab fa-mastodon"></i>
</a>
{{ end }}

View File

@ -76,7 +76,7 @@ html {
}
.socials {
display: inline;
display:inline;
font-size: 1.5rem;
}