blog.trnck.dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #76 from Ouadie/add-topics-limit-to-config

Removing the limit of topics list

authored by

Brandon Rosage and committed by
GitHub
aa39b729 4965c102

+1 -1
+1 -1
_includes/interests.html
··· 1 1 <h2 {% if site.style == 'dark' %}class="text-white"{% endif %}>My Interests</h2> 2 2 <p class="f4 mb-4 {% if site.style == 'dark' %}text-white{% else %}text-gray{% endif %}">Topics that I want to learn more about.</p> 3 3 <div class="d-flex flex-wrap gutter-condensed mb-4"> 4 - {% for topic in site.topics limit: 4 %} 4 + {% for topic in site.topics %} 5 5 <div class="col-6 col-md-12 col-lg-6 col-xl-4 mb-3"> 6 6 {% include topic-card.html %} 7 7 </div>