summaryrefslogtreecommitdiffstats
path: root/layouts/partials/home/skills.html
blob: 35bda7ce5c12b2c3632d767e05e3edeaa1141400 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<article class="skills">
  <h2 class="skills__header section-header">Skills</h2>
  <dl class="skills__content">
    {{ range $skill := . }}
      {{ range $title, $content := $skill }}
      <dt class="skills__title">{{ $title }}</dt>
      <dd class="skills__items">{{ $content }}</dd>
      {{ end }}
    {{ end }}
  </dl>
</article>