Sha256: 972acc995094e05314af937f753dbe281b8c764e346267895446b6a754519392

Contents?: true

Size: 939 Bytes

Versions: 5

Compression:

Stored size: 939 Bytes

Contents

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

{% for item in person %}
<div class="container py-5 text-center border-top"{% if item.about.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.about.section.icon %}<div class="display-6">{{ item.about.section.icon }}</div>{% endif %}
      {% if item.about.section.name %}<div class="display-6">{{ item.about.section.name }}</div>{% endif %}
      {% if item.about.section.preamble %}<p>{{ item.about.section.preamble }}</p>{% endif %}
    </div>
  </div>

  {% if item.about.content.size > 0 %}
  <div class="row mt-3">
    <div class="col">
      {% for p in item.about.content %}
      <p>{{ p }}</p>
      {% endfor %}
    </div>
  </div>
  {% endif %}

</div>
{% endfor %}

Version data entries

5 entries across 5 versions & 1 rubygems

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