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

13 lines
387 B
Handlebars
Raw Normal View History

2020-08-01 10:57:00 +02:00
<div class="LP-PlaceList">
{{> @headline headline='Listing our places'}}
<ul class="LP-PlaceList__List">
{{#each places}}
<li class="LP-PlaceList__Item">
<a href="#" class="LP-Link">
2020-08-01 10:57:49 +02:00
{{> @placeteaser image=this.image title=this.name location=this.location description=this.description modifier='--extended'}}
2020-08-01 10:57:00 +02:00
</a>
</li>
{{/each}}
</ul>
2020-08-12 22:30:14 +02:00
{{> @pagination}}
2020-08-01 10:57:00 +02:00
</div>