All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m4s
Events provides container-nav (calendar entries + links) and container-cards (batch entries for blog listing) as fragments. Day and entry routes fetch market container-nav via fragment instead of widget registry. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
369 B
HTML
11 lines
369 B
HTML
{# Calendar links nav — served as fragment from events app #}
|
|
{% for calendar in calendars %}
|
|
{% set local_href=events_url('/' + post_slug + '/calendars/' + calendar.slug + '/') %}
|
|
<a
|
|
href="{{ local_href }}"
|
|
class="{{styles.nav_button_less_pad}}">
|
|
<i class="fa fa-calendar" aria-hidden="true"></i>
|
|
<div>{{calendar.name}}</div>
|
|
</a>
|
|
{% endfor %}
|