layout: default


<article class=“post h-entry” itemscope itemtype=“schema.org/Person”>

<header class="post-header">
  <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
  {%- if page.twitter %}
  <p class="post-meta">
    <span itemprop="author" itemscope itemtype="http://schema.org/Person">Twitter: <a href="https://twitter.com/{{ page.twitter }}"><span class="p-author h-card" itemprop="name">@{{ page.twitter }}</span></a></span>
  </p>
  {%- endif %}
</header>

<div class="post-content e-content" itemprop="articleBody">
  {{ content }}
</div>

{% assign author_posts = site.posts | where:"author",page.identificador %}
{%- if author_posts.size > 0 -%}
  <h2 class="post-list-heading">{{ page.list_title | default: "Artículos" }}</h2>
  <ul class="post-list">
    {%- for post in author_posts -%}
    <li>
      {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
      <span class="post-meta">{{ post.date | date: date_format }}</span>
      <h3>
        <a class="post-link" href="{{ post.url | relative_url }}">
          {{ post.title | escape }}
        </a>
      </h3>
      {%- if site.show_excerpts -%}
        {{ post.excerpt }}
      {%- endif -%}
    </li>
    {%- endfor -%}
  </ul>

{%- endif -%}

<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>

</article>