From f35a7b0e70032de2feec9f3bda09da44cf0e1073 Mon Sep 17 00:00:00 2001 From: srv Date: Mon, 28 Apr 2025 17:11:28 -0500 Subject: first commit --- libretube-theme/templates/authors.html | 72 ++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 libretube-theme/templates/authors.html (limited to 'libretube-theme/templates/authors.html') diff --git a/libretube-theme/templates/authors.html b/libretube-theme/templates/authors.html new file mode 100644 index 0000000..f7428b6 --- /dev/null +++ b/libretube-theme/templates/authors.html @@ -0,0 +1,72 @@ +{% extends "base.html" %} + +{% block head %} + {% block title %} + {{ _('Créditos de %(sitename)s', sitename=SITENAME) }} + {% endblock %} + {{ super() }} + {% block seo %} + + + + + + + + + + + + + + {% endblock %} +{% endblock %} + +{% block content %} + +
+
+ +
+

{{ _('Artículos de vídeo') }}

+
    + {%- for author, articles in authors|sort %} +
  • + {{ author }} + ({{ articles|count }}) +
  • + {% endfor %} +
+ +

{{ _('Programación') }}

+ + +

{{ _('Traducción') }}

+ + +

{{ _('Software que usa la página') }}

+ {% set software = (('https://nginx.org/', 'Nginx'), + ('http://babel.pocoo.org/', 'Babel'), + ('https://pypi.org/project/beautifulsoup4/', 'BeautifulSoup4'), + ('https://www.python.org/', 'Python'), + ('https://blog.getpelican.com/', 'Pelican'), + ('https://pypi.org/project/Markdown/', 'Markdown'), + ('https://lablibre.tuxfamily.org/pages/librejs.html', _('Algunos programas de JavaScript'),)) %} + +
+ +
+
+ +{% endblock %} -- cgit v1.2.3