Sha256: 4716fa6406e1e30e9429fb24e946d3e4ab882f52e14d94b102a66ebfc2049480

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

{% comment %}
  Dvou sloupcové zobrazení:
   týmů v /clenove
   ú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 %}
    <div class="large-6 small-12 small-collapse columns end o-section-mediumdown-divided-small">
      {% include people/profile-badge.html item=item imgSize='big' imgStyle='round' %}
    </div>
  </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 %}
    <div class="large-6 small-12 small-collapse columns end o-section-mediumdown-divided-small">
      {% include people/profile-badge.html item=item imgSize='big' imgStyle='round' %}
    </div>
    {% if loopindex == 0 %}
      </div>
    {% endif %}
  {% endfor %}
{% endif %}
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-pirati-3.0.0 _includes/people/list-2col.html