first commit
This commit is contained in:
62
libretube-theme/templates/authors.html
Normal file
62
libretube-theme/templates/authors.html
Normal file
@@ -0,0 +1,62 @@
|
||||
{% 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://nodejs.org/', 'nodejs'),
|
||||
('https://www.python.org/', 'Python'),
|
||||
('https://blog.getpelican.com/', 'Pelican'),
|
||||
('https://pypi.org/project/Markdown/', 'Markdown'),
|
||||
('https://nodejs.org/', 'nodejs'),
|
||||
('https://www.npmjs.com/', 'npm'),
|
||||
('https://github.com/fmarcia/UglifyCSS', 'uglifycss'),
|
||||
('https://github.com/mishoo/UglifyJS', 'uglifyjs'),
|
||||
('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 %}
|
||||
Reference in New Issue
Block a user