Sha256: 9925e583237ca644c0b80239252758300dc510649a423502e8183e6c2ee55195

Contents?: true

Size: 728 Bytes

Versions: 3

Compression:

Stored size: 728 Bytes

Contents

{% comment %}
  Dvou sloupcové zobrazení:
   týmů v /lide
   úspěchů v /otevrenost
{% 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

3 entries across 3 versions & 1 rubygems

Version Path
jekyll-theme-pirati-0.3.0 _includes/people/list-2col.html
jekyll-theme-pirati-0.2.0 _includes/people/list-2col.html
jekyll-theme-pirati-0.1.0 _includes/people/list-2col.html