alterNERDtive.github.io/_includes/projects.html

10 lines
461 B
HTML
Raw Normal View History

2019-01-29 18:53:31 +01:00
<h2 {% if site.style == 'dark' %}class="text-white"{% endif %}>My Projects</h2>
<p class="f4 mb-4 {% if site.style == 'dark' %}text-white{% else %}text-gray{% endif %}">GitHub repositories that I've built.</p>
<div class="d-sm-flex flex-wrap gutter-condensed mb-4">
2019-02-11 17:34:15 +01:00
{% for repository in site.github.public_repositories limit: 9 %}
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include repo-card.html %}
</div>
{% endfor %}
</div>