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