diff options
Diffstat (limited to 'imdb-lookup/html/index.html')
-rw-r--r-- | imdb-lookup/html/index.html | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/imdb-lookup/html/index.html b/imdb-lookup/html/index.html index 53ceee7..cf9d102 100644 --- a/imdb-lookup/html/index.html +++ b/imdb-lookup/html/index.html @@ -80,7 +80,12 @@ </td> <td class="info"> <div class="title"> - {{movie.title}} + <a {{bind-attr href=movie.path.path}} {{bind-attr title=movie.path.label}}> + {{movie.title}} + </a> + {{#each tag in movie.tags}} + <span class="movie-tag">{{tag}}</span> + {{/each}} </div> <div class="headline"> <div class="plot">{{movie.plot}}</div> @@ -104,14 +109,6 @@ </td> </tr> </table> - <ul class="files"> - <li><a {{bind-attr href=movie.path.path}}>{{movie.path.label}}</a> - <li> - {{#each tag in movie.tags}} - {{tag}} - {{/each}} - </li> - </ul> </td> <td class="ratings"> <table> |