diff options
author | Jesús <heckyel@hyperbola.info> | 2019-11-19 12:12:42 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-11-19 12:12:42 -0500 |
commit | 67beaca9bc4c26bd9d099c12d963347bb0c7c626 (patch) | |
tree | 78a3f6e76a96f395eae8094431d2962241632254 /libretube-theme | |
parent | 4215380d870baef00e610138988089db0b45b9e1 (diff) | |
download | libretube-67beaca9bc4c26bd9d099c12d963347bb0c7c626.tar.lz libretube-67beaca9bc4c26bd9d099c12d963347bb0c7c626.tar.xz libretube-67beaca9bc4c26bd9d099c12d963347bb0c7c626.zip |
fix URL in credits
Diffstat (limited to 'libretube-theme')
-rw-r--r-- | libretube-theme/templates/authors.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libretube-theme/templates/authors.html b/libretube-theme/templates/authors.html index 0439063..146ad20 100644 --- a/libretube-theme/templates/authors.html +++ b/libretube-theme/templates/authors.html @@ -46,7 +46,7 @@ ('https://lablibre.tuxfamily.org/pages/librejs.html', _('Algunos programas de JavaScript'),)) %} <ul class="ml-3"> {% for program in software %} - <li><a href="{{ program[0] }}" title="{{ _('Sitio web de %(programa)s', programa=program[1]) }}"></a>{{ program[1] }}</li> + <li><a href="{{ program[0] }}" title="{{ _('Sitio web de %(programa)s', programa=program[1]) }}">{{ program[1] }}</a></li> {% endfor %} </ul> </div> |