Sha256: 3be268dbe78b98268f5cc705ce49299a996a6a763b6bac312ae6b90887a4d509

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 KB

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 py-5 text-center border-top"{% if item.projects.section.highlight == true %} style="background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(248,249,250,0) 100%);"{% endif %}>

  <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

3 entries across 3 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.2.0.beta.7 _includes/people/projects.html
jekyll-theme-centos-2.2.0.beta.6 _includes/people/projects.html
jekyll-theme-centos-2.2.0.beta.5 _includes/people/projects.html