Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 862 Bytes

partners.md

File metadata and controls

26 lines (22 loc) · 862 Bytes
title layout
Our Partners
default

{% assign rows = site.partners.size | divided_by: 2.0 | ceil %} {% for i in (1..rows) %} {% assign offset = forloop.index0 | times: 2 %}

{% for author in site.partners limit:2 offset:offset %}
{{page.title}}'s profile image
            <p class="card-text">{{ author.content | strip_html | truncatewords: 50}}</p>


            <a href="{{ author.url }}" class="btn btn-dark">Read more about {{author.title}}</a>
          </div>
      </div>
</div>
{% endfor %}
{% endfor %}