2020-03-21 15:55:50 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
<article class="h-entry" itemscope itemtype="http://schema.org/Article">
|
|
|
|
<header>
|
2020-08-29 21:41:57 +00:00
|
|
|
<h1 class="p-name" itemprop="name headline">{{ page.title | default: '' | escape }}</h1>
|
2020-03-21 15:55:50 +00:00
|
|
|
|
|
|
|
{%- if page.description -%}
|
2020-08-29 21:41:57 +00:00
|
|
|
<p class="lead p-summary" itemprop="description">{{ page.description | default: '' | escape }}</p>
|
2020-03-21 15:55:50 +00:00
|
|
|
{%- endif -%}
|
|
|
|
|
|
|
|
{%- if page.image.path -%}
|
|
|
|
<picture>
|
|
|
|
{% for size in site.images.sizes %}
|
|
|
|
<source srcset="{{ page.image.path | thumbnail: size }}" media="(max-width: {{ size }}px)" />
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<img class="img-fluid" src="{{ page.image.path | thumbnail: 1140 }}" alt="{{ page.image.description }}" />
|
|
|
|
</picture>
|
|
|
|
{%- endif -%}
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
|
|
|
{%- assign date_format = site.i18n.date | default: "%b %-d, %Y" -%}
|
|
|
|
{{ page.date | date: date_format }}
|
|
|
|
</time>
|
|
|
|
{%- for author in page.author -%}
|
|
|
|
•
|
|
|
|
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
|
|
|
|
<span class="p-author h-card" itemprop="name">
|
2020-08-29 21:41:57 +00:00
|
|
|
{{ author | default: '' | escape }}
|
2020-03-21 15:55:50 +00:00
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
{%- endfor -%}
|
|
|
|
</p>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="e-content" itemprop="articleBody">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
<a class="u-url" itemprop="url" href="{{ page.url }}" hidden>
|
|
|
|
{{ site.url }}/{{ page.url }}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
{%- if page.uuid -%}
|
|
|
|
<span hidden itemprop="identifier">{{ page.uuid }}</span>
|
|
|
|
{%- endif -%}
|
|
|
|
|
|
|
|
{%- if page.license.url -%}
|
|
|
|
<p itemprop="license" itemtype="http://schema.org/CreativeWork">
|
|
|
|
<a rel="license" itemprop="url" href="{{ page.license.url }}">
|
|
|
|
<span itemprop="articleBody">
|
|
|
|
{{ page.license.description }}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
{%- endif -%}
|
|
|
|
|
|
|
|
{%- if page.tags %}
|
|
|
|
<span itemprop="keywords" hidden>{{ page.tags | join: ', ' }}</span>
|
|
|
|
{%- for tag in page.tags -%}
|
|
|
|
<span hidden class="h-category">{{ tag }}</span>
|
|
|
|
{%- endfor -%}
|
|
|
|
{%- endif -%}
|
|
|
|
</footer>
|
|
|
|
</article>
|