summaryrefslogtreecommitdiff
path: root/client/templates/photos.html
blob: 565e0cc369b2f77f307b5af34cb561729560e798 (plain)
1
2
3
4
5
6
7
8
9
<template name="photos">
  {{#each photos}}
    {{> photo}}
  {{/each}}
</template>

<template name="photo">
  <img src="{{images.thumbnail.url}}">
</template>