Skip to content

Latest commit

 

History

History
32 lines (30 loc) · 1.12 KB

coffin-catalogue.md

File metadata and controls

32 lines (30 loc) · 1.12 KB
layout title description permalink id category
coffins
Catalogue of coffins
A catalogue of Egyptian coffins in the Fitzwilliam Museum
/coffin-catalogue
catalogue
catalogue

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

{% assign sorted = site.catalogue | sort:"order" %} {% for catalogue in sorted limit:2 offset:offset %}
{{page.title}}'s image
{{catalogue.title}}
            <p class="card-text">
              {{ catalogue.content | strip_html | truncatewords: 20}}
            </p>

            <a href="{{ catalogue.url }}" class="btn btn-dark stretched-link">Read more </a>
          </div>
      </div>
</div>
{% endfor %}
{% endfor %}