1
0
Fork 0
simple-auction/views/items.hbs

15 lines
521 B
Handlebars
Raw Permalink Normal View History

2016-12-01 11:35:25 +08:00
<div class="row">
<div class="col-sm-8 offset-sm-2 col-md-12 offset-md-0 col-lg-8 offset-lg-2">
<div class="items">
{{#each items}}
<div class="item">
<a href="/items/{{id}}">
<img class="crop-wide img-fluid rounded" ix-src="https://{{@root.config.imgix}}/{{images.0.src}}?w=480&h=640&fit=crop&crop=edges" />
<img class="crop-narrow img-fluid rounded" ix-src="https://{{@root.config.imgix}}/{{images.0.src}}?w=768&h=480&fit=crop&crop=edges" />
</a>
2016-12-01 01:19:07 +08:00
</div>
2016-12-01 11:35:25 +08:00
{{/each}}
2016-12-01 01:19:07 +08:00
</div>
</div>
2016-12-01 11:35:25 +08:00
</div>