diff options
Diffstat (limited to 'youtube/templates')
-rw-r--r-- | youtube/templates/common_elements.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index 9c5abe6..94554d4 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -23,11 +23,11 @@ <a class="thumbnail-box" href="{{ info['url'] }}" title="{{ info['title'] }}"> <div class="thumbnail {% if info['type'] == 'channel' %} channel {% endif %}"> {% if lazy_load %} - <img class="thumbnail-img lazy" alt="thumbnail" data-src="{{ info['thumbnail'] }}"> + <img class="thumbnail-img lazy" alt=" " data-src="{{ info['thumbnail'] }}"> {% elif info['type'] == 'channel' %} - <img class="thumbnail-img channel" alt="thumbnail" src="{{ info['thumbnail'] }}"> + <img class="thumbnail-img channel" alt=" " src="{{ info['thumbnail'] }}"> {% else %} - <img class="thumbnail-img" alt="thumbnail" src="{{ info['thumbnail'] }}"> + <img class="thumbnail-img" alt=" " src="{{ info['thumbnail'] }}"> {% endif %} {% if info['type'] != 'channel' %} |