aboutsummaryrefslogtreecommitdiffstats
path: root/cl-theme/templates/author.html
blob: 1bfcfe200304e51e9c57e353005087f3c7d446f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "index.html" %}

{% block title %}
    <title>{{ _('Artículos escritos por %(author)s en %(sitename)s', author=author, sitename=SITENAME) }}</title>
{% endblock %}
{% 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 %}

{% block content %}
    <div class="card-content-header">
        <h4 class="title is-4 has-text-centered">{{ _('Autor: %(author)s', author=author) }}</h4>
    </div>
    {{ super() }}
{% endblock %}