diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-06-20 11:08:50 +0300 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-06-20 11:08:50 +0300 |
| commit | fee6c70e7100d891925cf03188756d848ebc9a41 (patch) | |
| tree | d66d65564e508d300177d523171803c3080f68f0 /client/templates | |
| parent | aa652f38c7bcfbcddbec4290995e34a1d171bbab (diff) | |
Add steps breadcrumbs
Diffstat (limited to 'client/templates')
| -rw-r--r-- | client/templates/photos.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/client/templates/photos.html b/client/templates/photos.html index d5a1286..ac290b0 100644 --- a/client/templates/photos.html +++ b/client/templates/photos.html @@ -1,6 +1,10 @@ <template name="photos"> <div class="photos-wrapper"> - <h4 class="step">(Step 1)</h4> + <ol class="steps"> + {{#each steps}} + {{> step}} + {{/each}} + </ol> <h2 class="title">Processing...</h2> <!-- <button class="pixelate btn btn-default">Pixelate</button> <button class="color btn btn-default">Color</button> @@ -29,6 +33,10 @@ </div> </template> +<template name="step"> + <li id="step{{this}}" class="step">Step {{this}}</li> +</template> + <template name="photo"> <div class="photo" style="display: none;"> <div class="title">{{date}}</div> |
