diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html index 7bee424..9bf35db 100644 --- a/templates/index.html +++ b/templates/index.html @@ -33,8 +33,8 @@ </tr> {% for b, v in books.items() %} <tr> - <td><a href="?a={{ b }}">{{ v['title'] }}</a></td> - <td>{{ v['path'] }}</td> + <td><a href="?a={{ b }}">{{ v['title']|escape }}</a></td> + <td>{{ v['path']|escape }}</td> <td>{{ v['files']|length }}</td> <td>{{ v['duration_str'] }}</td> <td>{{ v['size_str'] }}</td> |