Sha256: 8c1dc4458907ff73cb5884e1af7bc643e6bb4cdc14b232b99b5d2d2ec78e6b43

Contents?: true

Size: 953 Bytes

Versions: 9

Compression:

Stored size: 953 Bytes

Contents

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

{% for item in person %}
{% if item.projects.content.size > 0 %}
<div class="container my-5 text-center">

  <div class="row">
    <div class="col">
      {% if item.projects.section.icon %}<div class="display-6">{{ item.projects.section.icon }}</div>{% endif %}
      {% if item.projects.section.name %}<div class="display-6">{{ item.projects.section.name }}</div>{% endif %}
      {% if item.projects.section.preamble %}<p>{{ item.projects.section.preamble }}</p>{% endif %}
    </div>
  </div>
  <div class="row mt-3">
    {% for project in item.projects.content %}
    <div class="col-sm-6 {% cycle 'border-end', '' %}">
      <h3 class="display-6 fw-bold"><a href="{{ project.name }}">{{ project.name }}</a></h3>
      <p class="lead">{{ project.description }}</p>
    </div>
    {% endfor%}
  </div>
</div>

{% endif %}
{% endfor%}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.1.0.beta.1 _includes/people/projects.html
jekyll-theme-centos-2.0.0 _includes/people/projects.html
jekyll-theme-centos-2.0.0.beta.2 _includes/people/projects.html
jekyll-theme-centos-2.0.0.beta.1 _includes/people/projects.html
jekyll-theme-centos-1.1.0 _includes/people/projects.html
jekyll-theme-centos-1.1.0.beta.1 _includes/people/projects.html
jekyll-theme-centos-1.0.1.beta.1 _includes/people/projects.html
jekyll-theme-centos-1.0.0 _includes/people/projects.html
jekyll-theme-centos-1.0.0.beta.1 _includes/people/projects.html