new resume page thingy which as the old one wasn't very clean and bloated
This commit is contained in:
commit
f245d80b37
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
hugo.exe
|
||||
resources/
|
||||
public/
|
126
config.toml
Normal file
126
config.toml
Normal file
@ -0,0 +1,126 @@
|
||||
baseURL = "http://shockrah.gitlab.io/resume"
|
||||
languageCode = "en-us"
|
||||
theme = "sada"
|
||||
|
||||
[params]
|
||||
title = "Alejandro Santillana"
|
||||
author = "Alejandro Santillana"
|
||||
description = "Writer of wares"
|
||||
copyright = ""
|
||||
copyright_link = ""
|
||||
|
||||
# Profile section
|
||||
[params.profile]
|
||||
name = "Alejandro Santillana"
|
||||
photo = "profile.jpg"
|
||||
|
||||
# Section for links to social websites
|
||||
[params.social]
|
||||
title = "Links"
|
||||
|
||||
[[params.social.list]]
|
||||
class = "fab"
|
||||
icon = "fa-linkedin-in"
|
||||
url = "https://www.linkedin.com/in/alejandro-santillana-38458b121/"
|
||||
title = "LinkedIn"
|
||||
|
||||
[[params.social.list]]
|
||||
class = "fab"
|
||||
icon = "fa-gitlab"
|
||||
url = "https://gitlab.com/shockrah"
|
||||
title = "GitHub"
|
||||
|
||||
# Education section
|
||||
[params.education]
|
||||
title = "Education"
|
||||
|
||||
[[params.education.list]]
|
||||
degree = "(In Progress) Bachelors of Computer Science"
|
||||
college = "California State University of Monterey Bay"
|
||||
dates = "2018 - 2019(December)"
|
||||
|
||||
[[params.education.list]]
|
||||
college = "Irvine Valley College"
|
||||
dates = "2016 - 2018"
|
||||
|
||||
[[params.education.list]]
|
||||
degree = "High School Diploma"
|
||||
college = "Aliso Niguel High School"
|
||||
dates = "2011 - 2015"
|
||||
|
||||
# Languages section
|
||||
[params.language]
|
||||
title = "Languages"
|
||||
|
||||
[[params.language.list]]
|
||||
language = "C"
|
||||
|
||||
[[params.language.list]]
|
||||
language = "Python"
|
||||
|
||||
[[params.language.list]]
|
||||
language = "x64 Assembly"
|
||||
|
||||
# Interests section
|
||||
[params.hobbies]
|
||||
title = "Hobbies"
|
||||
|
||||
[[params.hobbies.list]]
|
||||
interest = "Surfing"
|
||||
|
||||
[[params.hobbies.list]]
|
||||
interest = "Hacking"
|
||||
|
||||
[[params.hobbies.list]]
|
||||
interest = "Cooking"
|
||||
|
||||
[params.aboutme]
|
||||
description = "Libre software, hacking, and surfing."
|
||||
|
||||
[params.experiences]
|
||||
icon = "fa-briefcase"
|
||||
title = "Experiences"
|
||||
|
||||
[[params.jobs.list]]
|
||||
position = "Repair Technician"
|
||||
dates = "February 2019 - April 2019"
|
||||
company = "Loaves, Fishes, & Computers Inc."
|
||||
details = "Diagnosed technical issues with the clientele's computers as well as performed necessary repair and refurbishments. Windows troubleshooting was also a regular task that customers needed help with, apart from hardware repairs."
|
||||
|
||||
[[params.jobs.list]]
|
||||
position = "Kitchen Staff"
|
||||
dates = "July 2016 - August 2016"
|
||||
company = "Edible Arrangements"
|
||||
details = "Prepared fruit by washing, cutting, and decorating with various toppings.Other responsibilities also included: cleaning kitchen workstations, taking the trash out, washing essential kitchen equipment, maintaining the refrigerator clean as well."
|
||||
|
||||
# Projects section
|
||||
[params.projects]
|
||||
icon = "fa-project-diagram"
|
||||
title = "Projects"
|
||||
|
||||
[[params.projects.list]]
|
||||
title = "Personal Blog"
|
||||
url = "https://gitlab.com/shockrahwow/shockrah-city"
|
||||
description = "Personal blog built automatically built through shell scripts and markdown."
|
||||
|
||||
[[params.projects.list]]
|
||||
title = "DWM Shell Scripts"
|
||||
url = "https://gitlab.com/shockrah/shell-scripts"
|
||||
description = "Collection of shell scripts for those running DWM"
|
||||
|
||||
# Skills section
|
||||
[params.skills]
|
||||
icon = "fa-cogs"
|
||||
title = "Skills"
|
||||
|
||||
[[params.skills.list]]
|
||||
skill = "Bash/Shell Scripting, Python Scripting"
|
||||
skillrating = 95 # out of 100
|
||||
|
||||
[[params.skills.list]]
|
||||
skill = "Git Source Control, Web Deployment, CI/CD"
|
||||
skillrating = 80
|
||||
|
||||
[[params.skills.list]]
|
||||
skill = "C, Rust, Linux"
|
||||
skillrating = 90
|
1
layouts/partials/footer.html
Normal file
1
layouts/partials/footer.html
Normal file
@ -0,0 +1 @@
|
||||
<footer></footer>
|
7
layouts/partials/language.html
Normal file
7
layouts/partials/language.html
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
<h3>{{ .Site.Params.language.title }}</h3>
|
||||
<ul class="list-unstyled" style="text-indent: 1.25em;">
|
||||
{{ range .Site.Params.language.list }}
|
||||
<li>{{ .language }}</li>
|
||||
{{ end }}
|
||||
</ul>
|
1
themes/sada
Submodule
1
themes/sada
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit c97ed70622ec2fb6871e642eab1a9733d13edf93
|
Loading…
Reference in New Issue
Block a user