Sha256: 7b57f2b8c36b64f4b901433702f9826a319f0e5e613ef81dacf96d2328f4e785

Contents?: true

Size: 1.36 KB

Versions: 15

Compression:

Stored size: 1.36 KB

Contents

{% if page.pubkeys.section.visible == true %}
<section class="container my-5 text-center">

  {% if page.pubkeys.section.icon %}
  <i class="h1 {{ page.pubkeys.section.icon }}"></i>
  {% endif %}

  {% if page.pubkeys.section.name %}
  <h1>{{ page.pubkeys.section.name }}</h1>
  {% endif %}

  {% if page.pubkeys.section.preamble %}
  <p>{{ page.pubkeys.section.preamble }}</p>
  {% endif %}

  {% if page.pubkeys.content.size > 0 %}
  <div class="row">
    {% for pubkey in page.pubkeys.content %}
    <div class="col-sm-6">
      <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="2">{{ pubkey.content }}</textarea>
        <button id="{{ pubkey.name }}-button-{{ forloop.index }}" class="btn btn-outline-primary btn-clipboard" 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 %}

</section>
{% endif %}

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.22.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.21.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.20.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.19.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.18.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.17.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.16.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.15.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.14.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.13.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.12.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.11.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.10.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.9.0 _includes/people/pubkeys.html
jekyll-theme-centos-2.8.0 _includes/people/pubkeys.html