Sha256: c5b1e67480ec52ff481b69947a704f3311afe3eb3f8fc755eac43dc4f5537e9e

Contents?: true

Size: 714 Bytes

Versions: 1

Compression:

Stored size: 714 Bytes

Contents

{%- assign alllogos = site.data.affiliations %}
<div class="affiliation-tiles row row-cols-2 row-cols-sm-3 row-cols-md-4 g-4 my-3">
  {%- assign filtered_logos = alllogos | where: "type", include.type %}
  {%- for affiliation in filtered_logos %}
  {%- if affiliation.image_url and affiliation.expose == true %}
  <div class="col">
    <div class="card h-100 border-0">
      <div class="my-auto d-flex justify-content-center">
        {% if affiliation.url %}<a href="{{ affiliation.url }}">{% endif %}<img class="rounded" src="{{ affiliation.image_url | relative_url }}" alt="{{ affiliation.name }}">{%- if affiliation.url %}</a>{% endif %}
      </div>
    </div>
  </div>
  {%- endif %}
  {%- endfor %}
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
elixir-toolkit-theme-1.15.1 _includes/affiliation-tiles-selection.html