aboutsummaryrefslogtreecommitdiffstats
path: root/libretube-theme/templates/authors.html
blob: 04390637c669231ffe1fa7737022199f8cd76c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% extends "base.html" %}

{% block extra_head %}
    <meta name="description" content="{{ _('Lista de autores de LibreTube.') }}">
    <meta name="keywords" content="{{ _('articulistas,autores,colaboradores,escritores,lista de autores') }}">
{% endblock %}

{% block title %}{% trans %}Autores de {{ SITENAME }}{% endtrans %}{% endblock %}

{% block content %}
    <!-- Main -->
    <div class="row mt-6 mt-10">
        <div class="col-md-9 mx-auto text-justify">
            <!-- dinamic page content  -->
            <div class="ml-3">
                <h2>{{ _('Artículos de vídeo') }}</h2>
                <ul class="ml-3">
                    {%- for author, articles in authors|sort %}
                        <li>
                            <a href="{{ SITEURL }}/{{ author.url }}"
                               title="{% trans %}Artículos escritos por {{ author }}{% endtrans %}">{{ author }}</a>
                            ({{ articles|count }})
                        </li>
                    {% endfor %}
                </ul>

                <h2>{{ _('Programación') }}</h2>
                <ul class="ml-3">
                    <li><a href="https://www.freakspot.net/" title="{{ _('Sitio para gente Libre') }}">Jorge Maldonado Ventura</a></li>
                    <li><a href="https://heckyel.ga/" title="{{ _('Sitio web de Jesús E.') }}">Jesús E.</a></li>
                </ul>

                <h2>{{ _('Traducción') }}</h2>
                <ul class="ml-3">
                    <li><a href="https://rosenzweig.io/" title="{{ _('Sitio web de Alyssa Rosenzweig') }}">Alyssa Rosenzweig</a></li>
                    <li>Jorge Maldonado Ventura</li>
                </ul>

                <h2>{{ _('Software que usa la página') }}</h2>
                {% 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'),)) %}
                <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>
                    {% endfor %}
                </ul>
            </div>
            <!-- End dinamic page content  -->
        </div>
    </div>
    <!-- End Main -->
{% endblock %}