equal
deleted
inserted
replaced
1 {{! template for the annotation list widget }} |
|
2 <div class='Ldt-AnnotationsListWidget'> |
|
3 <ul class='Ldt-AnnotationsList-ul'> |
|
4 {{#annotations}} |
|
5 <li id='Ldt-Annotation-li-{{id}}' class='Ldt-AnnotationsList-li Ldt-TraceMe'> |
|
6 <div class='Ldt-AnnotationsList-ThumbContainer'> |
|
7 <a href='{{url}}'> |
|
8 <img class='Ldt-AnnotationsList-Thumbnail' src='{{thumbnail}}' /> |
|
9 </a> |
|
10 </div> |
|
11 <div class='Ldt-AnnotationsList-Duration'>{{begin}} - {{end}}</div> |
|
12 <h3 class='Ldt-AnnotationsList-Title'> |
|
13 <a href='{{url}}'>{{title}}</a> |
|
14 </h3> |
|
15 <p class='Ldt-AnnotationsList-Description'>{{description}}</p> |
|
16 {{#tags.length}} |
|
17 <ul class='Ldt-AnnotationsList-Tags'> |
|
18 {{#tags}} |
|
19 {{#.}} |
|
20 <li class='Ldt-AnnotationsList-Tag-Li'> |
|
21 <div class='Ldt-AnnotationsList-Tag-Div'>{{.}}</div> |
|
22 </li> |
|
23 {{/.}} |
|
24 {{/tags}} |
|
25 </ul> |
|
26 {{/tags.length}} |
|
27 </li> |
|
28 {{/annotations}} |
|
29 </ul> |
|
30 </div> |
|