22 lines
719 B
HTML
22 lines
719 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block extra_head %}
|
|
<meta name="author" content="{{ author }}">
|
|
<meta name="description" content="{% trans %}Artículos escritos por {{ author }} en Conocimientos Libres.{% endtrans %}">
|
|
<meta name="keywords" content="{% trans %}articulista,artículos,autor,autor {{ author }},escritor,{{ author }}{% endtrans %}">
|
|
<style>
|
|
.card-content-header {
|
|
margin-bottom: 2rem;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block title %}{{ SITENAME }} - {{ author }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="card-content-header">
|
|
<h4 class="title is-4 has-text-centered">{% trans %}Autor: {{ author }}{% endtrans %}</h4>
|
|
</div>
|
|
{{ super() }}
|
|
{% endblock %}
|