blog.trnck.dev
at main 9 lines 461 B view raw
1<h2 {% if site.style == 'dark' %}class="text-white"{% endif %}>My favourite programming languages</h2> 2<p class="f4 mb-4 {% if site.style == 'dark' %}text-white{% else %}text-gray{% endif %}">Languages that I use to do most of my work on GitHub</p> 3<div class="d-flex flex-wrap gutter-condensed mb-4"> 4 {% for topic in site.topics %} 5 <div class="col-6 col-md-12 col-lg-6 col-xl-4 mb-3"> 6 {% include topic-card.html %} 7 </div> 8 {% endfor %} 9</div>