Sha256: bd108155eeedfa9cd7a9f27946c516acafd93ae38b6bc6520968d96ba5c72ad8

Contents?: true

Size: 847 Bytes

Versions: 5

Compression:

Stored size: 847 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.support.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.support.section.icon %}<div class="display-6">{{ item.support.section.icon }}</div>{% endif %}
      {% if item.support.section.name %}<div class="display-6">{{ item.support.section.name }}</div>{% endif %}
      {% if item.support.section.preamble %}<p>{{ item.support.section.preamble }}</p>{% endif %}
    </div>
  </div>

  <div class="row">
    <div class="col">
      {{ item.support.content }}
    </div>
  </div>

</div>
{% endfor %}

Version data entries

5 entries across 5 versions & 1 rubygems

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