Sha256: ee442c769d5988d9e6f4076ad0449c483f61e97e3cd9a9ec662c1cb185dd5f9e

Contents?: true

Size: 1.1 KB

Versions: 37

Compression:

Stored size: 1.1 KB

Contents

{% assign username = page.username %} {% assign projects = page.projects.content %} {% assign limit = page.posts.section.limit %} {% if page.projects.section.visible == true %}
<section class="container my-5 text-center">

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

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

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

  {% if projects.size > 0 %}
  <div class="card-group">
  {% for i in projects limit: limit %}
  <div class="card">
    <a href="{{ i.link }}"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ i.image }}" class="card-img-top" alt="{{ i.name }}"></a>
    <div class="card-body">
      <h4 class="card-title"><a href="{{ i.link }}">{{ i.name }}</a></h4>
      <p class="card-text">{{ i.description }}</p>
    </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

37 entries across 37 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.46.1 _includes/people/projects.html
jekyll-theme-centos-2.46.0 _includes/people/projects.html
jekyll-theme-centos-2.45.0 _includes/people/projects.html
jekyll-theme-centos-2.44.0 _includes/people/projects.html
jekyll-theme-centos-2.43.0 _includes/people/projects.html
jekyll-theme-centos-2.42.0 _includes/people/projects.html
jekyll-theme-centos-2.41.0 _includes/people/projects.html
jekyll-theme-centos-2.40.0 _includes/people/projects.html
jekyll-theme-centos-2.39.0 _includes/people/projects.html
jekyll-theme-centos-2.38.0 _includes/people/projects.html
jekyll-theme-centos-2.37.0 _includes/people/projects.html
jekyll-theme-centos-2.36.0 _includes/people/projects.html
jekyll-theme-centos-2.35.0 _includes/people/projects.html
jekyll-theme-centos-2.34.0 _includes/people/projects.html
jekyll-theme-centos-2.33.0 _includes/people/projects.html
jekyll-theme-centos-2.32.0 _includes/people/projects.html
jekyll-theme-centos-2.31.0 _includes/people/projects.html
jekyll-theme-centos-2.30.0 _includes/people/projects.html
jekyll-theme-centos-2.29.0 _includes/people/projects.html
jekyll-theme-centos-2.28.0 _includes/people/projects.html