Sha256: 404a6d22047dbb5473119ec0be823e3f00c9b7f54f1b9f18d5e6900b6459d93b

Contents?: true

Size: 1.12 KB

Versions: 8

Compression:

Stored size: 1.12 KB

Contents

{% assign entries = site.posts | where: "category", "news-and-events" %}

<div class="container text-center">

  <div class="row">
    <div class="col">
      <div class="display-6"><i class="fa-solid fa-calendar-days"></i></div>
      <div class="display-6">News and Events</div>
    </div>
  </div>

  <div class="row">
    <div class="col">
      <div class="list-group shadow mb-3">
        {% for i in entries limit:5 %}
        {%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
        <a href="{{ i.link }}" class="list-group-item list-group-item-action d-flex gap-3 py-3" aria-current="true">
          <i class="text-primary mt-2 fa-solid fa-calendar-days"></i>
          <div class="d-flex gap-2 w-100 justify-content-between">
            <div class="text-start">
              <h5 class="text-primary">{{ i.title }}</h5>
              <p class="opacity-75">{{ i.excerpt | strip_html | slice: 0,150 }}...</p>
            </div>
            <small class="opacity-50 text-nowrap">{{ i.date | date: date_format }}</small>
          </div>
        </a>
        {% endfor %}
      </div>
    </div>
  </div>

</div>

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
jekyll-theme-centos-2.2.0.pre.staging.1 _includes/home/news-and-events.html
jekyll-theme-centos-2.2.0.pre.true.3 _includes/home/news-and-events.html
jekyll-theme-centos-2.2.0.pre.true.2 _includes/home/news-and-events.html
jekyll-theme-centos-2.2.0.pre.true.1.pre.alpha.9f29b18e _includes/home/news-and-events.html
jekyll-theme-centos-2.1.0 _includes/home/news-and-events.html
jekyll-theme-centos-2.0.9 _includes/home/news-and-events.html
jekyll-theme-centos-2.0.8 _includes/home/news-and-events.html
jekyll-theme-centos-test-1.1.5 _includes/home/news-and-events.html