All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 54s
Market app serves marketplace links as a fragment at /internal/fragments/container-nav for consumption by blog and events. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
304 B
HTML
10 lines
304 B
HTML
{# Market links nav — served as fragment from market app #}
|
|
{% for m in markets %}
|
|
<a
|
|
href="{{ market_url('/' + post_slug + '/' + m.slug + '/') }}"
|
|
class="{{styles.nav_button_less_pad}}">
|
|
<i class="fa fa-shopping-bag" aria-hidden="true"></i>
|
|
<div>{{m.name}}</div>
|
|
</a>
|
|
{% endfor %}
|