2017-04-27 00:57:29 -07:00
|
|
|
<div class="row">
|
2017-04-27 23:13:42 -07:00
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
{{#each model as |featureCard|}}
|
2018-03-12 13:09:01 -07:00
|
|
|
<div class="col-md-4">
|
2017-04-27 23:13:42 -07:00
|
|
|
<div class="feature-container">
|
|
|
|
|
<article class="feature-card">
|
2020-08-26 15:44:50 -07:00
|
|
|
<LinkTo @route={{featureCard.route}}>
|
2017-06-19 12:44:42 -07:00
|
|
|
<img
|
2019-08-31 20:51:14 -07:00
|
|
|
alt={{featureCard.alt}}
|
|
|
|
|
src={{featureCard.icon}}
|
|
|
|
|
class="feature-card__image"
|
|
|
|
|
>
|
2017-06-19 12:44:42 -07:00
|
|
|
|
2017-04-27 23:13:42 -07:00
|
|
|
<h3 class="feature-card__title">{{featureCard.title}}</h3>
|
2017-06-19 12:44:42 -07:00
|
|
|
|
2017-04-27 23:13:42 -07:00
|
|
|
<div class="feature-card__description">
|
|
|
|
|
{{featureCard.description}}
|
|
|
|
|
</div>
|
2020-08-26 15:44:50 -07:00
|
|
|
</LinkTo>
|
2017-04-27 23:13:42 -07:00
|
|
|
</article>
|
2017-04-27 00:57:29 -07:00
|
|
|
</div>
|
2017-04-27 23:13:42 -07:00
|
|
|
</div>
|
|
|
|
|
{{/each}}
|
2017-04-27 00:57:29 -07:00
|
|
|
</div>
|
2017-04-27 23:13:42 -07:00
|
|
|
</div>
|
2017-04-27 00:57:29 -07:00
|
|
|
</div>
|