Sha256: ff94db823a733c6eb821f4ec42bf64cc8c48f4fac5036cb19af81a9829a4c302

Contents?: true

Size: 1.57 KB

Versions: 6

Compression:

Stored size: 1.57 KB

Contents

{% if page.pubkeys.section.visible == true %}
<div class="container py-5 text-center border-top{% if page.pubkeys.section.highlight == true %} bg-light-radial-gradient{% endif %}">
  <div class="row">
    <div class="col">
      {% if page.pubkeys.section.icon %}
      <div class="display-4">{{ page.pubkeys.section.icon }}</div>
      {% endif %} {% if page.pubkeys.section.name %}
      <div class="display-6 fw-bold">{{ page.pubkeys.section.name }}</div>
      {% endif %} {% if page.pubkeys.section.preamble %}
      <p>{{ page.pubkeys.section.preamble }}</p>
      {% endif %}
    </div>
  </div>

  {% if page.pubkeys.content.size > 0 %}
  <div class="row">
    {% for pubkey in page.pubkeys.content %}
    <div class="col-sm-6 px-5">
      <p class="fw-bold">{{ pubkey.name }}</p>
      <div class="input-group">
        <textarea id="{{ pubkey.name }}-key-{{ forloop.index }}" class="form-control font-monospace" placeholder="User's key" aria-label="User's key" aria-describedby="{{ pubkey.name }}-button-{{ forloop.index }}" readonly rows="5">{{ pubkey.content }}</textarea>
        <button id="{{ pubkey.name }}-button-{{ forloop.index }}" class="btn btn-clipboard btn-outline-primary" type="button" aria-label="Copy to clipboard" data-clipboard-target="#{{ pubkey.name }}-key-{{ forloop.index }}" data-bs-toggle="tooltip" data-bs-title="Copy to clipboard"><i class="fa-solid fa-clipboard"></i></button>
      </div>
    </div>
    {% endfor %}
  </div>
  {% else %}
  <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
  {% endif %}
</div>
{% endif %}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.3.0.beta.67 _includes/people/pubkeys.html
jekyll-theme-centos-2.3.0.beta.66 _includes/people/pubkeys.html
jekyll-theme-centos-2.3.0.beta.65 _includes/people/pubkeys.html
jekyll-theme-centos-2.3.0.beta.64 _includes/people/pubkeys.html
jekyll-theme-centos-2.3.0.beta.63 _includes/people/pubkeys.html
jekyll-theme-centos-2.3.0.beta.62 _includes/people/pubkeys.html