Sha256: 26f6d282ed1c5e3506140a4bffcaa24e87036c1e7e81a9aa39b8d26d12155810
Contents?: true
Size: 700 Bytes
Versions: 4
Compression:
Stored size: 700 Bytes
Contents
{% comment %} Dvou sloupcové zobrazení: týmů v /lide {% endcomment %} <div class="row"> {% if 1 == team.size %} <div class="u-cf o-section-block o-section-block--divided-small o-section-block--divided-small--border"> {% assign item = team | first %} {% include people/item.html param='item' %} </div> {% else %} {% for item in team %} {% assign loopindex = forloop.index | modulo: 2 %} {% if loopindex == 1 %} <div class="u-cf o-section-block o-section-block--divided-small o-section-block--divided-small--border"> {% endif %} {% include people/item.html param='item' %} {% if loopindex == 0 %} </div> {% endif %} {% endfor %} {% endif %} </div>
Version data entries
4 entries across 4 versions & 1 rubygems