diff options
Diffstat (limited to 'client/templates/photos.html')
| -rw-r--r-- | client/templates/photos.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/client/templates/photos.html b/client/templates/photos.html new file mode 100644 index 0000000..565e0cc --- /dev/null +++ b/client/templates/photos.html @@ -0,0 +1,9 @@ +<template name="photos"> + {{#each photos}} + {{> photo}} + {{/each}} +</template> + +<template name="photo"> + <img src="{{images.thumbnail.url}}"> +</template> |
