Add single Schema

This commit is contained in:
Jesús
2019-11-24 19:41:06 -05:00
parent 0802d06a22
commit cc25865283
7 changed files with 90 additions and 57 deletions

View File

@@ -3,7 +3,26 @@
<div class="column has-text-left">
<a class="button is-small is-button-grey" href="{{ SITEURL }}/">{{ _('Regresar al Inicio') }}</a>
</div>
<div class="column has-text-right">
{% if article.modified %}
<div class="column has-text-centered">
<p>
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#calendar"></use>
</svg>
</span>
<span class="edit-link" title="{{ _('Fecha de modificación') }}">
<small class="screen-reader-text">{{ _('Modificado el') }} </small>
<time class="updated" datetime="{{ article.modified.isoformat() }}" itemprop="dateModified">
<small>{{ article.locale_modified }}</small>
</time>
</span>
</p>
</div>
{% endif %}
<div class="column has-text-right hidden-more">
<span class="soumaicon">
<svg>
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#calendar" />
@@ -12,7 +31,7 @@
{% set año = article.date|strftime('%Y') %}
{% set mes = article.date|strftime('%m') %}
{% set nombre_mes = article.date|strftime('%B') %}
<time class="entry-date published"
<time class="entry-date published" itemprop="datePublished"
datetime="{{ article.date.isoformat() }}">
<small>
{{ article.date|strftime('%a %-d') }}
@@ -33,10 +52,12 @@
</svg>
</span>
{% for author in article.authors %}
<small>
<a href="{{ SITEURL }}/{{ author.url }}"
title="{% trans %}Autor del artículo{% endtrans %}">{{ author }}</a>{% if not loop.last %}, {% endif %}
</small>
<span itemprop='author' itemscope itemtype="https://schema.org/Person" >
<small itemprop="name">
<a href="{{ SITEURL }}/{{ author.url }}" itemprop="url"
title="{% trans %}Autor del artículo{% endtrans %}">{{ author }}</a>{% if not loop.last %}, {% endif %}
</small>
</span>
{% endfor %}
{% endif %}