Sha256: babd9aab30e82289601bb271bf2b71254486f56d36df6fe9ae7a500c8cf32eaf

Contents?: true

Size: 482 Bytes

Versions: 4

Compression:

Stored size: 482 Bytes

Contents

<section class="news">
  <header>
    <h2><i class="fas fa-calendar-alt"></i> News and events</h2>
  </header>

  {% assign news = site.posts | where: "category", "news" %}
  {% assign events = site.posts | where: "category", "events" %}
  {% assign news_and_events = news | concat: events %}
  {% for i in news_and_events limit:3 %}
  <div class="row">
      <div class="col">
        <h4>{{ i.title }}</h4>
        {{ i.content }}
      </div>
  </div>
  {% endfor %}

</section>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jekyll-theme-centos-0.1.22 _includes/home/news.html
jekyll-theme-centos-0.1.21 _includes/home/news.html
jekyll-theme-centos-0.1.20 _includes/home/news.html
jekyll-theme-centos-0.1.19 _includes/home/news.html