aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/sections/skills.html
blob: 9a44877daa62d7e0886c2019193b554d8cccae89 (plain)
1
2
3
4
5
6
7
8
{{ with .Site.GetPage "/skills"}}
<h3>Technical Skills</h3>
<div class="skills">
    {{ range .Pages }}
        <strong>{{ .Title }}</strong>: {{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}<br />
    {{ end }}
</div>
{{ end }}