diff options
author | Jesús <heckyel@hyperbola.info> | 2021-01-07 23:06:25 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-01-07 23:06:25 -0500 |
commit | d899bc2df575a9e1ace0bed9c03143c95b09ee6d (patch) | |
tree | 868da3e8005a8ae24877fc19a1b0581ce45a0540 /youtube/templates | |
parent | 5329ecfd08af2c5a89836ef4e937632196a3fc40 (diff) | |
download | yt-local-d899bc2df575a9e1ace0bed9c03143c95b09ee6d.tar.lz yt-local-d899bc2df575a9e1ace0bed9c03143c95b09ee6d.tar.xz yt-local-d899bc2df575a9e1ace0bed9c03143c95b09ee6d.zip |
General theme: improve thumbnail-img
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' %} |