1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-20 14:54:15 +01:00

14 lines
571 B
HTML
Raw Normal View History

<section class="home-events">
<h4 class="text-sm m-t-sm">
{{ 'app.public.home.fablab_s_next_events' | translate }}
<a ui-sref="app.public.events_list">
<i class="fa fa-tags"></i>{{ 'app.public.home.every_events' | translate }}
</a>
</h4>
2022-04-14 18:30:56 +02:00
<div class="event-home-list" ng-repeat="event in (upcomingEvents.length/3 | array)">
2022-04-15 11:50:53 +02:00
<!-- FIXME: get [card-type] in React component's props -->
2022-04-14 18:30:56 +02:00
<event-card style="display: contents" event="event" card-type="md" ng-repeat="event in upcomingEvents.slice(3*$index, 3*$index + 3)" />
</div>
</section>