From b0a379f559b2864134301b3831af678333cf7670 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Sat, 2 Dec 2023 23:35:16 +0300 Subject: [PATCH] Add skills content --- archetypes/skills.md | 5 +++++ content/skills/Developer-Tools.md | 5 +++++ content/skills/Frameworks.md | 5 +++++ content/skills/Languages.md | 5 +++++ content/skills/Libraries.md | 5 +++++ layouts/partials/sections/skills.html | 15 ++++++--------- 6 files changed, 31 insertions(+), 9 deletions(-) create mode 100644 archetypes/skills.md create mode 100644 content/skills/Developer-Tools.md create mode 100644 content/skills/Frameworks.md create mode 100644 content/skills/Languages.md create mode 100644 content/skills/Libraries.md diff --git a/archetypes/skills.md b/archetypes/skills.md new file mode 100644 index 0000000..683b355 --- /dev/null +++ b/archetypes/skills.md @@ -0,0 +1,5 @@ +--- +title: '{{ replace .File.ContentBaseName `-` ` ` | title }}' +weight: 1 +tags: ["Hugo", "HTML/CSS"] +--- \ No newline at end of file diff --git a/content/skills/Developer-Tools.md b/content/skills/Developer-Tools.md new file mode 100644 index 0000000..464ab30 --- /dev/null +++ b/content/skills/Developer-Tools.md @@ -0,0 +1,5 @@ +--- +title: Developer Tools +weight: 3 +tags: ["Git", "Docker", "TravisCI", "Google Cloud Platform", "VS Code", "Visual Studio", "PyCharm", "IntelliJ", "Eclipse"] +--- \ No newline at end of file diff --git a/content/skills/Frameworks.md b/content/skills/Frameworks.md new file mode 100644 index 0000000..f1844a6 --- /dev/null +++ b/content/skills/Frameworks.md @@ -0,0 +1,5 @@ +--- +title: Frameworks +weight: 2 +tags: ["React", "Node.js", "Flask", "JUnit", "WordPress", "Material-UI", "FastAPI"] +--- \ No newline at end of file diff --git a/content/skills/Languages.md b/content/skills/Languages.md new file mode 100644 index 0000000..7e6565d --- /dev/null +++ b/content/skills/Languages.md @@ -0,0 +1,5 @@ +--- +title: Languages +weight: 1 +tags: ["Java", "Python", "C/C++", "SQL (Postgres)", "JavaScript", "HTML/CSS", "R"] +--- \ No newline at end of file diff --git a/content/skills/Libraries.md b/content/skills/Libraries.md new file mode 100644 index 0000000..101a698 --- /dev/null +++ b/content/skills/Libraries.md @@ -0,0 +1,5 @@ +--- +title: Libraries +weight: 4 +tags: ["pandas", "NumPy", "Matplotlib"] +--- \ No newline at end of file diff --git a/layouts/partials/sections/skills.html b/layouts/partials/sections/skills.html index 38dd515..9a44877 100644 --- a/layouts/partials/sections/skills.html +++ b/layouts/partials/sections/skills.html @@ -1,11 +1,8 @@ +{{ with .Site.GetPage "/skills"}}

Technical Skills

- Languages: Java, Python, C/C++, SQL - (Postgres), JavaScript, HTML/CSS, R
- Frameworks: React, Node.js, Flask, JUnit, - WordPress, Material-UI, FastAPI
- Developer Tools: Git, Docker, TravisCI, Google - Cloud Platform, VS Code, Visual Studio, PyCharm, IntelliJ, - Eclipse
- Libraries: pandas, NumPy, Matplotlib -
\ No newline at end of file + {{ range .Pages }} + {{ .Title }}: {{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}
+ {{ end }} + +{{ end }} \ No newline at end of file