diff options
author | Jesús <heckyel@hyperbola.info> | 2020-06-14 19:10:30 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-06-14 19:10:30 -0500 |
commit | fc4582e6252e697b5385abe5a31e20ad812aadcd (patch) | |
tree | 23d00650aaa09bd94e634ffab96be4ab125e7c25 /libretube-theme | |
parent | a4d5ae9d55e7f601d558d80faf5e269c12ba7326 (diff) | |
download | libretube-fc4582e6252e697b5385abe5a31e20ad812aadcd.tar.lz libretube-fc4582e6252e697b5385abe5a31e20ad812aadcd.tar.xz libretube-fc4582e6252e697b5385abe5a31e20ad812aadcd.zip |
Add title in link video
Diffstat (limited to 'libretube-theme')
-rw-r--r-- | libretube-theme/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libretube-theme/templates/base.html b/libretube-theme/templates/base.html index db96e93..13fb200 100644 --- a/libretube-theme/templates/base.html +++ b/libretube-theme/templates/base.html @@ -84,7 +84,7 @@ <div class="row"> {% for article in articles_page.object_list %} <article class="col-md-3 video" itemscope itemtype="https://schema.org/Movie"> - <a href="{{ SITEURL }}/{{ article.url }}"> + <a href="{{ SITEURL }}/{{ article.url }}" title="{{ article.title }}"> <div class="area"> <div class="mask"> |