alterNERDtive.github.io/_includes/thoughts.html

10 lines
420 B
HTML
Raw Normal View History

2019-01-29 21:27:18 +01:00
<h2 {% if site.style == 'dark' %}class="text-white"{% endif %}>My Thoughts</h2>
<p class="f4 mb-4 {% if site.style == 'dark' %}text-white{% else %}text-gray{% endif %}">Articles I've written.</p>
<div class="d-sm-flex flex-wrap gutter-condensed mb-4">
2019-02-11 17:34:15 +01:00
{% for post in site.posts limit: 6 %}
2019-01-29 21:27:18 +01:00
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
{% include post-card.html %}
</div>
{% endfor %}
</div>