1
0
This repository has been archived on 2025-01-10. You can view files and clone it, but cannot push or open issues or pull requests.

8 lines
258 B
HTML
Raw Normal View History

2023-12-02 23:35:16 +03:00
{{ with .Site.GetPage "/skills"}}
2023-11-23 22:27:56 +03:00
<h3>Technical Skills</h3>
<div class="skills">
2023-12-02 23:35:16 +03:00
{{ range .Pages }}
<strong>{{ .Title }}</strong>: {{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}<br />
{{ end }}
</div>
{{ end }}