15 lines
602 B
Plaintext
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> |