Skip to content

Latest commit

 

History

History
31 lines (30 loc) · 1 KB

resources.md

File metadata and controls

31 lines (30 loc) · 1 KB
layout title permalink newsletter
content-feed
Resources
/resources/
false
{% assign resources_grouped = site.resources | group_by: 'for' %} {% for group in resources_grouped %}

{{group.name}}

    {% for resource in group.items %}
    <div class="post-card resource-card">
      <a class="post-card__inner" href="{{ resource.url | relative_url }}" title="{{resource.title}}">
        <div class="post-card__header">
          <h2>{{ resource.title | strip_html | truncate: 50 }}</h2>
        </div>
        {% if resource.summary %}
          <p>{{ resource.summary | strip_html | truncatewords:20 }}</p>
        {% else %}
          <p>{{ resource.content | strip_html | truncatewords: 20 }}</p>
        {% endif %}
      </a>
    </div>
    {% endfor %}
</div>
{% endfor %}