Sha256: 4242601599c0cfaa6f96304e733b9f72b58a6a90fd4cb323a064231caccd13ff

Contents?: true

Size: 1.31 KB

Versions: 15

Compression:

Stored size: 1.31 KB

Contents

{% assign username = page.username %}
{% assign entries = site.posts | where: "username", username %}
{% assign person = site.data.centos.people | where: "username", username %}

{% if entries.size > 0 %}
{% for item in person %}
<div class="container">

  <div class="row text-center">
    <div class="col">
      {% if item.posts.section.icon %}<div class="display-6">{{ item.posts.section.icon }}</div>{% endif %}
      {% if item.posts.section.name %}<div class="display-6">{{ item.posts.section.name }}</div>{% endif %}
      {% if item.posts.section.preamble %}<p>{{ item.posts.section.preamble }}</p>{% endif %}
    </div>
  </div>

  <div class="row mt-3">
    <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">
          <div class="d-flex gap-2w-100 justify-content-between">
            <h5 class="pt-0 mt-1 mb-1 fw-bold text-primary">{{ i.title }}</h5>
            <small class="text-muted">{{ i.date | date: date_format }}</small>
          </div>
          <p class="mb-1">{{ i.excerpt | strip_html | slice: 0,150 }}...</p>
        </a>
        {% endfor %}
      </div>
    </div>
  </div>

</div>
{% endfor %}
{% endif %}

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.2.0.beta.4 _includes/people/posts.html
jekyll-theme-centos-2.2.0.beta.3 _includes/people/posts.html
jekyll-theme-centos-2.2.0.beta.2 _includes/people/posts.html
jekyll-theme-centos-2.2.0.beta.1 _includes/people/posts.html
jekyll-theme-centos-2.1.1.beta.2 _includes/people/posts.html
jekyll-theme-centos-2.1.1.beta.1 _includes/people/posts.html
jekyll-theme-centos-2.1.0.beta.1 _includes/people/posts.html
jekyll-theme-centos-2.0.0 _includes/people/posts.html
jekyll-theme-centos-2.0.0.beta.2 _includes/people/posts.html
jekyll-theme-centos-2.0.0.beta.1 _includes/people/posts.html
jekyll-theme-centos-1.1.0 _includes/people/posts.html
jekyll-theme-centos-1.1.0.beta.1 _includes/people/posts.html
jekyll-theme-centos-1.0.1.beta.1 _includes/people/posts.html
jekyll-theme-centos-1.0.0 _includes/people/posts.html
jekyll-theme-centos-1.0.0.beta.1 _includes/people/posts.html