Sha256: 0df06ecfda78b5d781f8fe8fc562b4140d7428efcae893b0e911153e9d526308
Contents?: true
Size: 621 Bytes
Versions: 25
Compression:
Stored size: 621 Bytes
Contents
<section id="news-and-events" class="home__news-and-events"> <h2 class="home__news-and-events__title">News and events</h2> <div class="home__news-and-events__content"> {% assign blog_posts = site.posts | where: "category", "news-and-events" %} {% for i in blog_posts limit:5 %} {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%} <a class="btn" role="button" href="{{ i.url }}"> <div class="card"> <h3 class="card-title">{{ i.title }}</h3> <div class="card-body">{{ i.date | date: date_format }} — {{ i.excerpt | strip_html }}</div> </div> </a> {% endfor %} </div> </section>
Version data entries
25 entries across 25 versions & 2 rubygems