summaryrefslogtreecommitdiff
path: root/libretube-theme/templates/author.html
diff options
context:
space:
mode:
Diffstat (limited to 'libretube-theme/templates/author.html')
-rw-r--r--libretube-theme/templates/author.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/libretube-theme/templates/author.html b/libretube-theme/templates/author.html
new file mode 100644
index 0000000..ba1b2d9
--- /dev/null
+++ b/libretube-theme/templates/author.html
@@ -0,0 +1,34 @@
+{% extends "base.html" %}
+
+{% block head %}
+ {% block title %}
+ <title>{{ _('Artículos escritos por %(author)s en %(sitename)s', author=author, sitename=SITENAME) }}</title>
+ {% endblock %}
+ {{ super() }}
+ {% block seo %}
+ <!-- Meta Author -->
+ <meta name="author" content="{{ author }}"/>
+ <meta name="description" content="{{ _('Artículos escritos por %(author)s en %(sitename)s', author=author, sitename=SITENAME) }}"/>
+ <meta name="keywords" content="{% trans %}articulista,artículos,author,autor {{ author }},escritor,{{ author }}{% endtrans %}"/>
+ <style>
+ .card-content-header {
+ margin-bottom: 2rem;
+ }
+ </style>
+ {% endblock %}
+{% endblock %}
+
+{% block menu_header %}{% endblock menu_header %}
+
+{% block content %}
+ <!-- title -->
+ <div class="row">
+ <div class="col-md-12 mx-auto text-justify">
+ <hr>
+ <h4 class="tab">{% trans %}Autor: {{ author }}{% endtrans %}</h4>
+ <hr>
+ </div>
+ </div>
+ <!-- title -->
+ {{ super() }}
+{% endblock %}