From d27f874483a1e0044090fd2a0b9c329b44a14a19 Mon Sep 17 00:00:00 2001 From: Andrew Simonson Date: Sun, 19 May 2024 11:45:31 -0500 Subject: [PATCH] update skills / skills init --- src/static/json/skills.json | 20 ++++++++++++++++---- src/templates/partials/skills.html | 6 +++++- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/src/static/json/skills.json b/src/static/json/skills.json index 33fdd97..9a8e7df 100644 --- a/src/static/json/skills.json +++ b/src/static/json/skills.json @@ -1,5 +1,14 @@ { "Data and AI": { + "Tools": { + "Microsoft Azure": { + "Databricks": {}, + "Data Factory": {}, + "Stream Analytics": {} + }, + "Apache Spark": {}, + "Visual Basic for Applications (Excel)": {} + }, "Python": { "PyTorch/TensorFlow": {}, "Numpy/Pandas": {}, @@ -11,16 +20,19 @@ "Frontend": { "Flask (Python)": {}, "React (Javascript)": {}, - "Angular (Typescript)": {} + "SASS/SCSS": {} }, "Backend & DevOps": { + "Backend": { + "Rust": {}, + "C#": {}, + "C++": {} + }, "DevOps": { "Docker": {}, "Microsoft Azure": {}, "Kubernetes/Openshift": {}, "Bash": {} - }, - "C#": {}, - "C++": {} + } } } diff --git a/src/templates/partials/skills.html b/src/templates/partials/skills.html index aed678f..a103ed1 100644 --- a/src/templates/partials/skills.html +++ b/src/templates/partials/skills.html @@ -10,7 +10,11 @@ {% macro skills(skills) %}
{% for skill in skills %} - {{ expandSkill(skills, skill, 'activeSkill') }} + {% set classes = "" %} + {% if skill == skills|first %} + {% set classes = "activeSkill" %} + {% endif %} + {{ expandSkill(skills, skill, classes) }} {% endfor %}
{% endmacro %} \ No newline at end of file