Add single Schema
This commit is contained in:
parent
0802d06a22
commit
cc25865283
@ -578,6 +578,13 @@ h4 > a:hover {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* hidden text more */
|
||||||
|
.hidden-more {
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
/* aplaylist */
|
/* aplaylist */
|
||||||
.play-menu {
|
.play-menu {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
|
@ -68,12 +68,12 @@
|
|||||||
<!-- start of posts -->
|
<!-- start of posts -->
|
||||||
<div class="columns is-multiline is-centered">
|
<div class="columns is-multiline is-centered">
|
||||||
<!-- start of post -->
|
<!-- start of post -->
|
||||||
<article class="column is-10">
|
<article class="column is-10" itemscope itemtype="https://schema.org/CreativeWork">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
|
||||||
<!-- post header -->
|
<!-- post header -->
|
||||||
<div class="card-content-header">
|
<div class="card-content-header">
|
||||||
<h2 class="title is-4 has-text-centered" id="titulo">{{ article.title }}</h2>
|
<h2 class="title is-4 has-text-centered" id="titulo" itemprop="name">{{ article.title }}</h2>
|
||||||
</div>
|
</div>
|
||||||
<!-- end of post header -->
|
<!-- end of post header -->
|
||||||
|
|
||||||
@ -82,7 +82,7 @@
|
|||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="card-inner-wrapper">
|
<div class="card-inner-wrapper">
|
||||||
<!-- post text -->
|
<!-- post text -->
|
||||||
<div class="card-content-text has-text-justified">
|
<div class="card-content-text has-text-justified" itemprop="text">
|
||||||
{% if article.toc %}
|
{% if article.toc %}
|
||||||
<nav class="toc">
|
<nav class="toc">
|
||||||
{{ article.toc }}
|
{{ article.toc }}
|
||||||
|
@ -3,7 +3,26 @@
|
|||||||
<div class="column has-text-left">
|
<div class="column has-text-left">
|
||||||
<a class="button is-small is-button-grey" href="{{ SITEURL }}/">{{ _('Regresar al Inicio') }}</a>
|
<a class="button is-small is-button-grey" href="{{ SITEURL }}/">{{ _('Regresar al Inicio') }}</a>
|
||||||
</div>
|
</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">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#calendar" />
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#calendar" />
|
||||||
@ -12,7 +31,7 @@
|
|||||||
{% set año = article.date|strftime('%Y') %}
|
{% set año = article.date|strftime('%Y') %}
|
||||||
{% set mes = article.date|strftime('%m') %}
|
{% set mes = article.date|strftime('%m') %}
|
||||||
{% set nombre_mes = article.date|strftime('%B') %}
|
{% set nombre_mes = article.date|strftime('%B') %}
|
||||||
<time class="entry-date published"
|
<time class="entry-date published" itemprop="datePublished"
|
||||||
datetime="{{ article.date.isoformat() }}">
|
datetime="{{ article.date.isoformat() }}">
|
||||||
<small>
|
<small>
|
||||||
{{ article.date|strftime('%a %-d') }}
|
{{ article.date|strftime('%a %-d') }}
|
||||||
@ -33,10 +52,12 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
{% for author in article.authors %}
|
{% for author in article.authors %}
|
||||||
<small>
|
<span itemprop='author' itemscope itemtype="https://schema.org/Person" >
|
||||||
<a href="{{ SITEURL }}/{{ author.url }}"
|
<small itemprop="name">
|
||||||
|
<a href="{{ SITEURL }}/{{ author.url }}" itemprop="url"
|
||||||
title="{% trans %}Autor del artículo{% endtrans %}">{{ author }}</a>{% if not loop.last %}, {% endif %}
|
title="{% trans %}Autor del artículo{% endtrans %}">{{ author }}</a>{% if not loop.last %}, {% endif %}
|
||||||
</small>
|
</small>
|
||||||
|
</span>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{% block html_lang %}{{ DEFAULT_LANG }}{% endblock %}">
|
<html lang="{% block html_lang %}{{ DEFAULT_LANG }}{% endblock %}">
|
||||||
<head prefix="og: http://ogp.me/ns# {% if article %}article: http://ogp.me/ns/article#{% endif%}">
|
<head prefix="og: https://ogp.me/ns#{% if article %} article: https://ogp.me/ns/article#{% endif%}">
|
||||||
{% set SITESUBTITLE = _('Sitio de información sobre Software Libre') %}
|
{% set SITESUBTITLE = _('Sitio de información sobre Software Libre') %}
|
||||||
{% block head %}
|
{% block head %}
|
||||||
|
|
||||||
@ -56,7 +56,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!-- navigation -->
|
<!-- navigation -->
|
||||||
<header class="navigation">
|
<header class="navigation" itemscope itemtype="https://schema.org/WPHeader">
|
||||||
<nav class="navbar">
|
<nav class="navbar">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<!-- nav site title -->
|
<!-- nav site title -->
|
||||||
@ -82,12 +82,12 @@
|
|||||||
{% if DISPLAY_PAGES_ON_MENU %}
|
{% if DISPLAY_PAGES_ON_MENU %}
|
||||||
<div id="navMenu" class="navbar-menu">
|
<div id="navMenu" class="navbar-menu">
|
||||||
<ul class="navbar-end">
|
<ul class="navbar-end">
|
||||||
<li><a href="{{ SITEURL }}/" class="navbar-item is-tab {% if output_file == 'index.html' %} is-active{% endif %}">{{ _('Inicio') }}</a></li>
|
<li><a itemprop="url" href="{{ SITEURL }}/" class="navbar-item is-tab {% if output_file == 'index.html' %} is-active{% endif %}">{{ _('Inicio') }}</a></li>
|
||||||
{% for p in pages %}
|
{% for p in pages %}
|
||||||
<li><a href="{{ SITEURL }}/{{ p.url }}" class="navbar-item is-tab {% if p == page %} is-active{% endif %}">{{ p.title }}</a></li>
|
<li><a itemprop="url" href="{{ SITEURL }}/{{ p.url }}" class="navbar-item is-tab {% if p == page %} is-active{% endif %}">{{ p.title }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<li><a href="{{ SITEURL }}/{{ ARCHIVES_URL }}" class="navbar-item is-tab {% if output_file == ARCHIVES_SAVE_AS %} is-active {% endif %}">{{ _('Archivos') }}</a></li>
|
<li><a itemprop="url" href="{{ SITEURL }}/{{ ARCHIVES_URL }}" class="navbar-item is-tab {% if output_file == ARCHIVES_SAVE_AS %} is-active {% endif %}">{{ _('Archivos') }}</a></li>
|
||||||
<li><a href="{{ SITEURL }}/{{ AUTHORS_URL }}" class="navbar-item is-tab {% if output_file == AUTHORS_SAVE_AS %} is-active{% endif %}">{{ _('Créditos') }}</a></li>
|
<li><a itemprop="url" href="{{ SITEURL }}/{{ AUTHORS_URL }}" class="navbar-item is-tab {% if output_file == AUTHORS_SAVE_AS %} is-active{% endif %}">{{ _('Créditos') }}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -102,10 +102,10 @@
|
|||||||
<section class="hero">
|
<section class="hero">
|
||||||
<div class="hero-body">
|
<div class="hero-body">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="has-text-centered">
|
<div class="has-text-centered" itemscope itemtype="https://schema.org/Blog">
|
||||||
{%- block sitename -%}
|
{%- block sitename -%}
|
||||||
<!-- header && subheader -->
|
<!-- header && subheader -->
|
||||||
<h1 class="title is-1 is-spaced">{{ SITENAME }}</h1>
|
<h1 class="title is-1 is-spaced" itemprop="name">{{ SITENAME }}</h1>
|
||||||
<p class="subtitle is-4">{{ SITESUBTITLE }}</p>
|
<p class="subtitle is-4">{{ SITESUBTITLE }}</p>
|
||||||
{%- endblock -%}
|
{%- endblock -%}
|
||||||
|
|
||||||
@ -141,14 +141,14 @@
|
|||||||
<div class="columns is-multiline is-centered has-text-centered">
|
<div class="columns is-multiline is-centered has-text-centered">
|
||||||
<!-- start of post -->
|
<!-- start of post -->
|
||||||
{% for article in articles_page.object_list %}
|
{% for article in articles_page.object_list %}
|
||||||
<article class="column is-4">
|
<article class="column is-4" itemscope itemtype="https://schema.org/CreativeWork">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<!-- image for post -->
|
<!-- image for post -->
|
||||||
{% if article.image %}
|
{% if article.image %}
|
||||||
<div class="card-image">
|
<div class="card-image">
|
||||||
<a href="{{ SITEURL }}/{{ article.url }}#titulo">
|
<a href="{{ SITEURL }}/{{ article.url }}#titulo">
|
||||||
<figure class="image ihover circle3">
|
<figure class="image ihover circle3">
|
||||||
<img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/poster/{{ article.image }}" alt="{{ article.title }}">
|
<img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/poster/{{ article.image }}" alt="{{ article.title }}" itemprop="image">
|
||||||
</figure>
|
</figure>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@ -156,7 +156,7 @@
|
|||||||
<div class="card-image">
|
<div class="card-image">
|
||||||
<a href="{{ SITEURL }}/{{ article.url }}#titulo">
|
<a href="{{ SITEURL }}/{{ article.url }}#titulo">
|
||||||
<figure class="image ihover circle3">
|
<figure class="image ihover circle3">
|
||||||
<img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/background/745x372.png" alt="Image">
|
<img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/background/745x372.png" alt="Image" itemprop="image">
|
||||||
</figure>
|
</figure>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@ -165,7 +165,7 @@
|
|||||||
|
|
||||||
<!-- post header -->
|
<!-- post header -->
|
||||||
<div class="card-content-header">
|
<div class="card-content-header">
|
||||||
<h4 class="title is-4"><a href="{{ SITEURL }}/{{ article.url }}#titulo" rel="bookmark" title="{{ _('Enlace a %(articulo)s', articulo=article.title|striptags) }}">{{ article.title }}</a></h4>
|
<h4 class="title is-4" itemprop="headline"><a href="{{ SITEURL }}/{{ article.url }}#titulo" rel="bookmark" title="{{ _('Enlace a %(articulo)s', articulo=article.title|striptags) }}">{{ article.title }}</a></h4>
|
||||||
</div>
|
</div>
|
||||||
<!-- end of post header -->
|
<!-- end of post header -->
|
||||||
|
|
||||||
@ -220,11 +220,11 @@
|
|||||||
<!-- end of page content -->
|
<!-- end of page content -->
|
||||||
<!-- .site-content -->
|
<!-- .site-content -->
|
||||||
|
|
||||||
<footer class="footer footer-top-shadow">
|
<footer class="footer footer-top-shadow" itemscope itemtype="https://schema.org/WPFooter">
|
||||||
|
|
||||||
<!-- header nav content -->
|
<!-- header nav content -->
|
||||||
<div class="navbar is-social-center">
|
<div class="navbar is-social-center" itemscope itemtype="https://schema.org/FollowAction">
|
||||||
<a class="navbar-item" href="{{ SOCIAL['diaspora'] }}">
|
<a class="navbar-item" href="{{ SOCIAL['diaspora'] }}" itemprop="followee">
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#diaspora"/>
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#diaspora"/>
|
||||||
@ -232,7 +232,7 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="navbar-item" href="{{ SOCIAL['gnusocial'] }}">
|
<a class="navbar-item" href="{{ SOCIAL['gnusocial'] }}" itemprop="followee">
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#gnusocial"/>
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#gnusocial"/>
|
||||||
@ -240,7 +240,7 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="navbar-item" href="{{ SOCIAL['pump'] }}">
|
<a class="navbar-item" href="{{ SOCIAL['pump'] }}" itemprop="followee">
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#pump"/>
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#pump"/>
|
||||||
@ -248,7 +248,7 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="navbar-item" href="{{ SOCIAL['pixelfed'] }}">
|
<a class="navbar-item" href="{{ SOCIAL['pixelfed'] }}" itemprop="followee">
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#pixelfed"/>
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#pixelfed"/>
|
||||||
@ -256,7 +256,7 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="navbar-item" href="{{ SOCIAL['peertube'] }}">
|
<a class="navbar-item" href="{{ SOCIAL['peertube'] }}" itemprop="followee">
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#peertube"/>
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#peertube"/>
|
||||||
@ -264,7 +264,7 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="navbar-item" href="{{ SOCIAL['mediagoblin'] }}">
|
<a class="navbar-item" href="{{ SOCIAL['mediagoblin'] }}" itemprop="followee">
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#mediagoblin"/>
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#mediagoblin"/>
|
||||||
@ -272,7 +272,7 @@
|
|||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="navbar-item" href="{{ SOCIAL['matrix'] }}">
|
<a class="navbar-item" href="{{ SOCIAL['matrix'] }}" itemprop="followee">
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#matrix"/>
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#matrix"/>
|
||||||
@ -281,7 +281,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
{% if FEED_ALL_ATOM %}
|
{% if FEED_ALL_ATOM %}
|
||||||
<a class="navbar-item" href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" rel="alternate" type="application/atom+xml">
|
<a class="navbar-item" href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" rel="alternate" type="application/atom+xml" itemprop="url">
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#rss"/>
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#rss"/>
|
||||||
@ -298,8 +298,8 @@
|
|||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#libregit"/>
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#libregit"/>
|
||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
<p>{{ _('Escrito por') }}
|
<p itemprop='author' itemscope itemtype="https://schema.org/Person">{{ _('Escrito por') }}
|
||||||
<a href="https://libregit.org/heckyel">libregit.org/heckyel</a>
|
<a itemprop="url" href="https://libregit.org/heckyel">libregit.org/heckyel</a>
|
||||||
</p>
|
</p>
|
||||||
<p>{{ _('Este sitio es Software Libre') }}</p>
|
<p>{{ _('Este sitio es Software Libre') }}</p>
|
||||||
<p>
|
<p>
|
||||||
@ -311,7 +311,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ SITEURL }}/pages/librejs.html" data-jslicense="1">{{ _('Licencias de JavaScript') }}</a>
|
<a itemprop="license" href="{{ SITEURL }}/pages/librejs.html" data-jslicense="1">{{ _('Licencias de JavaScript') }}</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
{% set año = article.date|strftime('%Y') %}
|
{% set año = article.date|strftime('%Y') %}
|
||||||
{% set mes = article.date|strftime('%m') %}
|
{% set mes = article.date|strftime('%m') %}
|
||||||
{% set nombre_mes = article.date|strftime('%B') %}
|
{% set nombre_mes = article.date|strftime('%B') %}
|
||||||
<time class="entry-date published"
|
<time class="entry-date published" itemprop="datePublished"
|
||||||
datetime="{{ article.date.isoformat() }}">
|
datetime="{{ article.date.isoformat() }}">
|
||||||
<small>
|
<small>
|
||||||
{{ article.date|strftime('%a %-d') }}
|
{{ article.date|strftime('%a %-d') }}
|
||||||
@ -23,29 +23,34 @@
|
|||||||
</time>
|
</time>
|
||||||
|
|
||||||
{% if article.modified %}
|
{% if article.modified %}
|
||||||
|
<p>
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#calendar" />
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#calendar"></use>
|
||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
<span class="edit-link"
|
<span class="edit-link" title="{{ _('Fecha de modificación') }}">
|
||||||
title="{{ _('Fecha de modificación') }}">
|
<small class="screen-reader-text">{{ _('Modificado el') }} </small>
|
||||||
<small class="screen-reader-text">{{ _('Modificado el %(fecha)s'|format(fecha='</small>
|
<time class="updated" datetime="{{ article.modified.isoformat() }}" itemprop="dateModified">
|
||||||
<time class="updated" datetime="%s"><small>%s</small></time>')|format(article.modified.isoformat(), article.locale_modified)) }}
|
<small>{{ article.locale_modified }}</small>
|
||||||
|
</time>
|
||||||
</span>
|
</span>
|
||||||
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if not HIDE_AUTHORS and article.authors %}
|
{% if not HIDE_AUTHORS and article.authors %}
|
||||||
|
{% for author in article.authors %}
|
||||||
|
<p itemprop='author' itemscope itemtype="https://schema.org/Person">
|
||||||
<span class="soumaicon">
|
<span class="soumaicon">
|
||||||
<svg>
|
<svg>
|
||||||
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#user" />
|
<use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/icons/master.svg#user" />
|
||||||
</svg>
|
</svg>
|
||||||
</span>
|
</span>
|
||||||
{% for author in article.authors %}
|
<small itemprop="name">
|
||||||
<small>
|
<a href="{{ SITEURL }}/{{ author.url }}" itemprop="url"
|
||||||
<a href="{{ SITEURL }}/{{ author.url }}"
|
|
||||||
title="{% trans %}Autor del artículo{% endtrans %}">{{ author }}</a>{% if not loop.last %}, {% endif %}
|
title="{% trans %}Autor del artículo{% endtrans %}">{{ author }}</a>{% if not loop.last %}, {% endif %}
|
||||||
</small>
|
</small>
|
||||||
|
</p>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -33,6 +33,6 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block sitename %}
|
{% block sitename %}
|
||||||
<h1 class="title is-1 is-spaced">{{ SITENAME }}</h1>
|
<h1 class="title is-1 is-spaced" itemprop="name">{{ SITENAME }}</h1>
|
||||||
<p class="subtitle is-4">{{ SITESUBTITLE }}</p>
|
<p class="subtitle is-4">{{ SITESUBTITLE }}</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -48,11 +48,11 @@
|
|||||||
<!-- start of pages -->
|
<!-- start of pages -->
|
||||||
<div class="columns is-multiline is-centered">
|
<div class="columns is-multiline is-centered">
|
||||||
<!-- start of page -->
|
<!-- start of page -->
|
||||||
<div class="column is-7">
|
<div class="column is-7" itemscope itemtype="https://schema.org/CreativeWork">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<!-- post header -->
|
<!-- post header -->
|
||||||
<div class="card-content-header">
|
<div class="card-content-header">
|
||||||
<h4 class="title is-4 has-text-centered">{{ page.title }}</h4>
|
<h2 class="title is-4 has-text-centered" itemprop="name">{{ page.title }}</h2>
|
||||||
</div>
|
</div>
|
||||||
<!-- end of post header -->
|
<!-- end of post header -->
|
||||||
<!-- post content -->
|
<!-- post content -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user