switched order of projecst/ experience sections

also added more projects
This commit is contained in:
shockrah 2020-02-05 19:37:44 -08:00
parent a4260cfb06
commit cd360661b3
2 changed files with 38 additions and 6 deletions

View File

@ -115,27 +115,32 @@ 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."
description = "x86 based operating system written from scratch using C, x86 assembly, and built with GNU Make. Written for personal academic purposes."
[[params.projects.list]]
title = "Freechat - A Decentralized Chat Platform"
url = "https://gitlab.com/shockrah/freechat"
description = "Built with a Rust backend(Rocket) serving a restful API, SQL database, and an official app built with ElectonJS for connecting to a server."
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."
[[params.projects.list]]
title = "ESP8266 Promiscuous Wifi Detection"
url = "https://gitlab.com/shockrah/wifi-sens"
description = "Library which allows for wifi sniffing using some hidden features of the controller."
description = "Wifi scanning via an ESP-8266 and Arduino. Built using reverse engineered Xtensa library features in C."
[[params.projects.list]]
title = "Bash Generated Blog"
title = "Static Site Generator in Bash"
url = "https://gitlab.com/shockrah/shockrah-city"
description = "Personal blog built automatically built through shell scripts and markdown."
description = "Personal blog built automatically built through shell scripts and markdown. All content can be built via a static site generator written in pure Bash script."
[[params.projects.list]]
title = "DWM Shell Scripts"
url = "https://gitlab.com/shockrah/shell-scripts"
description = "Collection of shell scripts for those running DWM"
description = "Linux based 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."
# Skills section

27
layouts/index.html Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="{{ .Site.Language }}">
{{ partial "head.html" . }}
<body class="bg-dark container" style="font-family: 'Roboto', sans-serif;">
{{ partial "header.html" . }}
<div class="row mt-1">
<div
class="col-sm-4 order-sm-2 bg-secondary text-white border border-secondary rounded pt-3"
>
{{ partial "education.html" . }}
<hr style="width:50%;" />
{{ partial "language.html" . }}
<hr style="width:50%;" />
{{ partial "hobby.html" . }}
</div>
<div class="col-sm-8 text-white pt-3">
{{ partial "project.html" . }}
{{ partial "experience.html" . }}
{{ partial "skill.html" . }}
</div>
</div>
{{ partial "footer.html" . }}
</body>
</html>