Files
Gainsight/customer_templates/CameraIQ/_section_popular_topics.html.liquid
Norm Rasmussen 26beb4c7f2 new directory
2022-02-23 13:18:41 -05:00

15 lines
602 B
Plaintext

<div class="np-homepage-featured np-homepage-topics np-max-width">
<div class="np-homepage-featured-text">
<div class="np-homepage-headline">
Popular Topics
</div>
</div>
<div class="np-topics-list row">
<div class="col-xs-12 np-stretch-content">
{% assign categories_by_name = current_school.filterable_categories | sort: "name" %}
{% for category in categories_by_name %}
<a class="np-top-button np-button np-button-secondary" href="#">{{ category.name }}</a>
{% endfor %}
</div>
</div>
</div>