Sha256: 29beb59e06068fab5c9d32379ff92bde316a0f2f2a786ee75b78688d2bdf5b78

Contents?: true

Size: 862 Bytes

Versions: 1

Compression:

Stored size: 862 Bytes

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 content">
    {% for pubkey in page.pubkeys.content %}
    <div class="col-sm-6">
      <h5>{{ pubkey.name }}</h5>
      <pre class="highlight"><code class="hljs text-start" style="height: 8rem;">{{ pubkey.content }}</code></pre>
    </div>
    {% endfor %}
  </div>
  {% else %}
  <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
  {% endif %}

</section>
{% endif %}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.25.0 _includes/people/pubkeys.html