diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-12-02 23:35:16 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-12-02 23:35:16 +0300 |
commit | b0a379f559b2864134301b3831af678333cf7670 (patch) | |
tree | 59367cbdce47db8db5ec98dcb6b3189a4d4d14b0 /layouts | |
parent | 48b9b6ce8a7d61c3aa94d10941601a57bdd73217 (diff) |
Add skills content
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/sections/skills.html | 15 |
1 files changed, 6 insertions, 9 deletions
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"}} <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>
\ No newline at end of file + {{ range .Pages }} + <strong>{{ .Title }}</strong>: {{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}<br /> + {{ end }} +</div> +{{ end }}
\ No newline at end of file |