lostplaces-frontend/components/03_Organisms/placeGrid/placeGrid.hbs

13 lines
437 B
Handlebars
Raw Normal View History

2020-08-01 10:28:08 +02:00
<div class="LP-PlaceGrid">
{{> @headline headline='Explorere the latest locations'}}
<ul class="LP-PlaceGrid__Grid">
{{#each places}}
<li class="LP-PlaceGrid__Item">
<a href="#" class="LP-Link">
{{> @placeteaser image=this.image title=this.name location=this.location description=this.description}}
</a>
</li>
{{/each}}
</ul>
2020-07-17 17:55:46 +02:00
</div>