1
0

Add skills content

This commit is contained in:
Serghei Cebotari 2023-12-02 23:35:16 +03:00
parent 48b9b6ce8a
commit b0a379f559
6 changed files with 31 additions and 9 deletions

5
archetypes/skills.md Normal file
View File

@ -0,0 +1,5 @@
---
title: '{{ replace .File.ContentBaseName `-` ` ` | title }}'
weight: 1
tags: ["Hugo", "HTML/CSS"]
---

View File

@ -0,0 +1,5 @@
---
title: Developer Tools
weight: 3
tags: ["Git", "Docker", "TravisCI", "Google Cloud Platform", "VS Code", "Visual Studio", "PyCharm", "IntelliJ", "Eclipse"]
---

View File

@ -0,0 +1,5 @@
---
title: Frameworks
weight: 2
tags: ["React", "Node.js", "Flask", "JUnit", "WordPress", "Material-UI", "FastAPI"]
---

View File

@ -0,0 +1,5 @@
---
title: Languages
weight: 1
tags: ["Java", "Python", "C/C++", "SQL (Postgres)", "JavaScript", "HTML/CSS", "R"]
---

View File

@ -0,0 +1,5 @@
---
title: Libraries
weight: 4
tags: ["pandas", "NumPy", "Matplotlib"]
---

View File

@ -1,11 +1,8 @@
{{ with .Site.GetPage "/skills"}}
<h3>Technical Skills</h3>
<div class="skills">
<strong>Languages</strong>: Java, Python, C/C++, SQL
(Postgres), JavaScript, HTML/CSS, R<br />
<strong>Frameworks</strong>: React, Node.js, Flask, JUnit,
WordPress, Material-UI, FastAPI<br />
<strong>Developer Tools</strong>: Git, Docker, TravisCI, Google
Cloud Platform, VS Code, Visual Studio, PyCharm, IntelliJ,
Eclipse<br />
<strong>Libraries</strong>: pandas, NumPy, Matplotlib
</div>
{{ range .Pages }}
<strong>{{ .Title }}</strong>: {{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}<br />
{{ end }}
</div>
{{ end }}