adding typing to skill section

This commit is contained in:
shockrah 2020-02-05 20:13:57 -08:00
parent cd360661b3
commit 3583672bea
3 changed files with 32 additions and 20 deletions

View File

@ -50,19 +50,19 @@ theme = "sada"
# Languages section
[params.language]
title = "Languages"
title = "Skills"
[[params.language.list]]
language = "C/C++, Rust"
type = "General Programming Languages"
language = "C/C++, Rust, Python, Bash, Javascript"
[[params.language.list]]
language = "Python, Bash"
type = "Web Development"
language = "HTML, CSS, SASS, Jinja, Jquery, Vue"
[[params.language.list]]
language = "x86/x64, Assembly"
[[params.language.list]]
language = "HTML, CSS, Javascript"
type = "Soft skills"
language = "Patient, Analytical, Leader"
# Interests section
[params.hobbies]
@ -115,17 +115,22 @@ theme = "sada"
[[params.projects.list]]
title = "Homebrew Operating system"
url = "https://gitlab.com/shockrah/jankos"
description = "x86 based operating system written from scratch using C, x86 assembly, and built with GNU Make. Written for personal academic purposes."
description = "x86 based operating system written from scratch using C, x86 assembly, and built with GNU Make. A working copy is provided via Gitlabs Continuous Integration/Deployment pipeline with a custom Docker image."
[[params.projects.list]]
title = "Docker Image for buiding Operating Systems"
url = "https://hub.docker.com/repository/docker/shockrah/osdev-build"
description = "Docker image I produced to aid in the deployment of the operating system project."
[[params.projects.list]]
title = "Freechat - A Decentralized Chat Platform"
url = "https://gitlab.com/shockrah/freechat"
description = "Web based chat server built with Rust. Endpoints are served on a restful API, which often hooks into an SQL database. Testing is also handled using Cargo's built in testing configuration features."
description = "Web based chat server built with Rust. Endpoints are served on a restful API, which often hooks into an SQL database. Unit testing is also handled using Cargo's built in testing configuration features."
[[params.projects.list]]
title = "ESP8266 Promiscuous Wifi Detection"
url = "https://gitlab.com/shockrah/wifi-sens"
description = "Wifi scanning via an ESP-8266 and Arduino. Built using reverse engineered Xtensa library features in C."
[[params.projects.list]]
title = "OBS Stream Song Extension"
url = "https://gitlab.com/shockrah/obs-song-name"
description = "Chrome extension written to pull in the name of a song currentl playing on Youtube or Soundcloud to a local server written in Rust. Both are deployed to Gitlab for easy download via a continuous depolyment pipeline using docker."
[[params.projects.list]]
title = "Static Site Generator in Bash"
@ -135,12 +140,13 @@ theme = "sada"
[[params.projects.list]]
title = "DWM Shell Scripts"
url = "https://gitlab.com/shockrah/shell-scripts"
description = "Linux based shell scripts which are used to improve a user's experience with tiling window managers like DWM or i3WM."
description = "Suite of Linux shell scripts which are used to improve a user's experience with tiling window managers like DWM or i3WM."
[[params.projects.list]]
title = "OBS Stream Song Extension"
url = "https://gitlab.com/shockrah/obs-song-name"
description = "Chrome extension written to pull in the name of a song currentl playing on Youtube or Soundcloud to a local server written in Rust. Both are deployed to Gitlab for easy download via a continuous depolyment pipeline using docker."
[[params.projects.list]]
title = "ESP8266 Promiscuous Wifi Detection"
url = "https://gitlab.com/shockrah/wifi-sens"
description = "Wifi scanning via an ESP-8266 and Arduino. Built using reverse engineered Xtensa library features in C."
# Skills section
@ -163,3 +169,4 @@ theme = "sada"
[[params.skills.list]]
skill = "SQL Database Management"
skillrating = "95"

View File

@ -18,10 +18,14 @@
<div class="col-sm-8 text-white pt-3">
{{ partial "project.html" . }}
{{ partial "experience.html" . }}
{{ partial "skill.html" . }}
</div>
</div>
{{ partial "footer.html" . }}
</body>
<style>
.skill-type {
text-indent: 30px;
}
</style>
</html>

View File

@ -2,6 +2,7 @@
<h3>{{ .Site.Params.language.title }}</h3>
<ul class="list-unstyled" style="text-indent: 1.25em;">
{{ range .Site.Params.language.list }}
<li>{{ .language }}</li>
<div class="skill-indent">{{ .type }}</div>
<div class="skill-type">{{ .language }}</div><br>
{{ end }}
</ul>