author.html 669 B

123456789101112131415161718
  1. {% extends "index.html" %}
  2. {% block extra_head %}
  3. <meta name="author" content="{{ author }}">
  4. <meta name="description" content="{% trans %}Artículos escritos por {{ author }} en Freak Spot.{% endtrans %}">
  5. <meta name="keywords" content="{% trans %}articulista,artículos,autor,autor {{ author }},escritor,{{ author }}{% endtrans %}">
  6. <script src="/hashover-next/api/count-link.php?nodefault"></script>
  7. {% endblock %}
  8. {% block title %}{{ SITENAME }} - {{ author }}{% endblock %}
  9. {% block content %}
  10. <header class="page-header">
  11. <h1 class="page-title">{% trans %}Autor: {{ author }}{% endtrans %}</h1>
  12. </header>
  13. {{ super() }}
  14. {% endblock %}