summaryrefslogtreecommitdiff
path: root/client/templates
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-06-12 00:14:38 +0300
committerYuval Adam <yuval@y3xz.com>2015-06-12 00:14:38 +0300
commitbe4103f6cdebfb7b7b04270c20d6c91eeb61a4f3 (patch)
tree0eb816f7d48f1155a5fb5eb09c2095541e713282 /client/templates
parent9738ebafd811c77d20a0e3f0f7b6f1876ed53532 (diff)
Photos page design
Diffstat (limited to 'client/templates')
-rw-r--r--client/templates/photos.html29
1 files changed, 23 insertions, 6 deletions
diff --git a/client/templates/photos.html b/client/templates/photos.html
index 866ae9f..3a4866c 100644
--- a/client/templates/photos.html
+++ b/client/templates/photos.html
@@ -1,11 +1,28 @@
<template name="photos">
- {{#each photos}}
- {{> photo}}
- {{/each}}
- <button class="pixelate btn btn-default">Pixelate</button>
+ <div class="photos-wrapper">
+ <h4>(Step 1)</h4>
+ <h2>Processing...</h2>
+ <div class="photos">
+ {{#each photos}}
+ {{> photo}}
+ {{> photo}}
+ {{> photo}}
+ {{> photo}}
+ {{> photo}}
+ {{> photo}}
+ {{> photo}}
+ {{> photo}}
+ {{> photo}}
+ {{/each}}
+ </div>
+ </div>
+ <!-- <button class="pixelate btn btn-default">Pixelate</button> -->
</template>
<template name="photo">
- <img id="img-{{id}}" src="{{images.thumbnail.url}}" crossorigin="anonymous">
- <canvas id="canvas-{{id}}" resize="true" style="width: 180px; height: 230px;"></canvas>
+ <div class="photo">
+ <div class="title">{{date}}</div>
+ <img id="img-{{id}}" src="{{images.thumbnail.url}}" crossorigin="anonymous">
+ <!-- <canvas id="canvas-{{id}}" resize="true" style="width: 180px; height: 230px;"></canvas> -->
+ </div>
</template>