Skip to content

Latest commit

 

History

History
43 lines (38 loc) · 1.17 KB

skills.markdown

File metadata and controls

43 lines (38 loc) · 1.17 KB
layout title
main
Skills - Dmitriy Logunov

Skills matrix

{% assign skills_matrix = site.data.matrix %} {% assign row_length = skills_matrix[0].size | plus: 3 %}
Skill
Rating
Years
{% for company in skills_matrix[0] %} {% if company != '' %}
{{ company }}
{% endif %} {% endfor %}
{% for row in skills_matrix %}
  {% if forloop.first %}
    {% continue %}
  {% endif %}
  {% for cell in row %}
    {% if forloop.index <= 3 %}
      <div class="grid-item">{{ cell }}</div>
    {% else %}
      {% if cell == '1' %}
        <div class="grid-item with-checkbox">
          <i class="fa fa-check-square" aria-hidden="true"></i>
          <noscript>#</noscript>
        </div>
      {% else %}
        <div class="grid-item">&nbsp;</div>
      {% endif %}
    {% endif %}
  {% endfor %}
{% endfor %}