10 lines
420 B
HTML
10 lines
420 B
HTML
|
<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">
|
||
|
{% for post in site.posts limit: 4 %}
|
||
|
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3">
|
||
|
{% include post-card.html %}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|