blog.trnck.dev
at main 10 lines 481 B view raw
1<h2 {% if site.style == 'dark' %}class="text-white"{% endif %}>Blog</h2> 2<p class="f4 mb-4 {% if site.style == 'dark' %}text-white{% else %}text-gray{% endif %}">Some articles I have written</p> 3<div class="d-sm-flex flex-wrap gutter-condensed mb-4"> 4 {% for post in site.posts limit: 9 %} 5 <div class="col-sm-6 col-md-12 col-lg-6 col-xl-4 mb-3"> 6 {% include post-card.html %} 7 </div> 8 {% endfor %} 9 <a class="m-3" href="/posts/">Check out <i>the rest</i></a> 10</div>