src/templates/annotationsListWidget.html
branchnew-model
changeset 875 43629caa77bc
parent 874 38b65761a7d5
child 876 03967b6ada7c
--- a/src/templates/annotationsListWidget.html	Fri Apr 20 19:13:11 2012 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-{{! template for the annotation list widget }}
-<div class='Ldt-AnnotationsListWidget'>
-    <ul class='Ldt-AnnotationsList-ul'>
-        {{#annotations}}
-        <li id='Ldt-Annotation-li-{{id}}' class='Ldt-AnnotationsList-li Ldt-TraceMe'>
-            <div class='Ldt-AnnotationsList-ThumbContainer'>
-                <a href='{{url}}'>
-                    <img class='Ldt-AnnotationsList-Thumbnail' src='{{thumbnail}}' />
-                </a>
-            </div>
-            <div class='Ldt-AnnotationsList-Duration'>{{begin}} - {{end}}</div>
-            <h3 class='Ldt-AnnotationsList-Title'>
-                <a href='{{url}}'>{{title}}</a>
-            </h3>
-            <p class='Ldt-AnnotationsList-Description'>{{description}}</p>
-            {{#tags.length}}
-            <ul class='Ldt-AnnotationsList-Tags'>
-                {{#tags}}
-                {{#.}}
-                <li class='Ldt-AnnotationsList-Tag-Li'>
-                    <div class='Ldt-AnnotationsList-Tag-Div'>{{.}}</div>
-                </li>
-                {{/.}}
-                {{/tags}}
-            </ul>
-            {{/tags.length}}
-        </li>
-        {{/annotations}}
-    </ul>
-</div>