This repository has been archived on 2024-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
resume/layouts/partials/sections/skills.html
2023-12-06 22:56:56 +03:00

8 lines
271 B
HTML

{{ with .Site.GetPage "/skills"}}
<h3>Ключевые навыки</h3>
<div class="skills">
{{ range .Pages }}
<strong>{{ .Title }}</strong>: {{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}<br />
{{ end }}
</div>
{{ end }}