Sha256: d1dc53c07f714efa4a9fb3378666156163bbc3ad7480ac718f5c29b72dd22686

Contents?: true

Size: 1.32 KB

Versions: 88

Compression:

Stored size: 1.32 KB

Contents

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

  <div class="row">
    <div class="col">
      {% if projects.size > 0 %}
      <div class="list-group shadow text-start">
        {% for i in projects limit: limit %}
        <a href="{{ site.baseurl }}{{ i.link }}" class="list-group-item list-group-item-action">
          <div class="fw-bold">{{ i.name }}</div>
          <small class="text-muted">{{ i.description }}</small>
        </a>
        {% endfor %}
      </div>
      {% else %}
      <div class="alert alert-light border shadow" role="alert">Nothing posted here, yet.</div>
      {% endif %}
    </div>
  </div>
</div>
{% endif %}

Version data entries

88 entries across 88 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.51.1.beta.56 _includes/people/projects.html
jekyll-theme-centos-2.51.1.beta.55 _includes/people/projects.html
jekyll-theme-centos-2.51.1.beta.54 _includes/people/projects.html
jekyll-theme-centos-2.51.1.beta.53 _includes/people/projects.html
jekyll-theme-centos-2.51.1.beta.52 _includes/people/projects.html
jekyll-theme-centos-2.51.1.beta.51 _includes/people/projects.html
jekyll-theme-centos-2.51.1.beta.50 _includes/people/projects.html
jekyll-theme-centos-2.51.1.beta.49 _includes/people/projects.html
jekyll-theme-centos-2.51.1.beta.48 _includes/people/projects.html
jekyll-theme-centos-2.51.1.beta.47 _includes/people/projects.html
jekyll-theme-centos-2.5.2 _includes/people/projects.html
jekyll-theme-centos-2.5.1 _includes/people/projects.html
jekyll-theme-centos-2.5.0 _includes/people/projects.html
jekyll-theme-centos-2.4.0 _includes/people/projects.html
jekyll-theme-centos-2.3.0 _includes/people/projects.html
jekyll-theme-centos-2.2.21 _includes/people/projects.html
jekyll-theme-centos-2.2.20 _includes/people/projects.html
jekyll-theme-centos-2.2.18 _includes/people/projects.html
jekyll-theme-centos-2.2.17 _includes/people/projects.html
jekyll-theme-centos-2.2.16 _includes/people/projects.html