Sha256: 508d0562dcff77c8b6e5c56314613105e482c6664ca6cd913de8f4bfa4b75719

Contents?: true

Size: 953 Bytes

Versions: 6

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.link }}">{{ project.name }}</a></h3>
      <p class="lead">{{ project.description }}</p>
    </div>
    {% endfor%}
  </div>
</div>

{% endif %}
{% endfor%}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.2.0.beta.4 _includes/people/projects.html
jekyll-theme-centos-2.2.0.beta.3 _includes/people/projects.html
jekyll-theme-centos-2.2.0.beta.2 _includes/people/projects.html
jekyll-theme-centos-2.2.0.beta.1 _includes/people/projects.html
jekyll-theme-centos-2.1.1.beta.2 _includes/people/projects.html
jekyll-theme-centos-2.1.1.beta.1 _includes/people/projects.html