article_info_aside.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!-- post footer -->
  2. <div class="card-content-footer">
  3. <span class="soumaicon text-info">
  4. <svg>
  5. <use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/svg/master.svg#calendar" />
  6. </svg>
  7. </span>
  8. {% set año = article.date|strftime('%Y') %}
  9. {% set mes = article.date|strftime('%m') %}
  10. {% set nombre_mes = article.date|strftime('%B') %}
  11. <time class="entry-date published"
  12. datetime="{{ article.date.isoformat() }}">
  13. <small>
  14. {{ article.date|strftime('%a %-d') }}
  15. <a class="text-info" href="{{ SITEURL }}/archives/{{ año }}/{{ mes }}/"
  16. title="{% trans %}Artículos de {{ nombre_mes }} de {{ año }}{% endtrans %}">
  17. {{ nombre_mes }}
  18. </a>
  19. <a class="text-secondary" href="{{ SITEURL }}/archives/{{ año }}/"
  20. title="{% trans %}Artículos de {{ año }}{% endtrans %}">{{ año }}
  21. </a>
  22. </small>
  23. </time>
  24. {% if not HIDE_AUTHORS and article.authors %}
  25. <span class="soumaicon text-info">
  26. <svg>
  27. <use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/svg/master.svg#user" />
  28. </svg>
  29. </span>
  30. {% for author in article.authors %}
  31. <small>
  32. <a class="text-white" href="{{ SITEURL }}/{{ author.url }}"
  33. title="{% trans %}Autor del artículo{% endtrans %}">{{ author }}</a>{% if not loop.last %}, {% endif %}
  34. </small>
  35. {% endfor %}
  36. {% endif %}
  37. {% import 'translations.html' as translations with context %}
  38. {% if translations.translations_for(article) %}
  39. <span class="soumaicon text-info">
  40. <svg>
  41. <use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/svg/master.svg#translate" />
  42. </svg>
  43. </span>
  44. <small>
  45. {{ translations.translations_for(article) }}
  46. </small>
  47. {% else %}
  48. {% endif %}
  49. </div>
  50. <!-- end of post footer -->
  51. <!-- /.post-info -->