Removing the limit of topics

This commit is contained in:
Ouadie 2019-03-07 21:13:58 -08:00
parent aceb7d8574
commit 444fedccf2

View file

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