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