|
|
|
@ -34,26 +34,33 @@ layout: compress
@@ -34,26 +34,33 @@ layout: compress
|
|
|
|
|
<article itemscope itemtype="https://schema.org/BlogPosting"> |
|
|
|
|
|
|
|
|
|
<header class="header"> |
|
|
|
|
{% if page.tags and page.tags != empty %} |
|
|
|
|
<div class="tags"> |
|
|
|
|
{% assign tags = page.tags %} |
|
|
|
|
<span itemprop="keywords"> |
|
|
|
|
{% for tag in tags %} |
|
|
|
|
<a class="tag" |
|
|
|
|
href="/tags/#{{tag | downcase | slugify}}">{{tag | upcase }}</a>{% unless forloop.last %},{% endunless %} |
|
|
|
|
{% endfor %} |
|
|
|
|
</span> |
|
|
|
|
</div> |
|
|
|
|
{% endif %} |
|
|
|
|
<h1 class="header-title" itemprop="headline">{{ page.title | escape }}</h1> |
|
|
|
|
{% if page.date %} |
|
|
|
|
<div class="post-meta"> |
|
|
|
|
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"> |
|
|
|
|
{{ page.date | date: "%d %b %Y" }} |
|
|
|
|
</time> |
|
|
|
|
<span itemprop="author" itemscope itemtype="https://schema.org/Person"> |
|
|
|
|
|
|
|
|
|
<span hidden itemprop="author" itemscope itemtype="https://schema.org/Person"> |
|
|
|
|
<span itemprop="name">{{ site.author.name }}</span> |
|
|
|
|
</span> |
|
|
|
|
|
|
|
|
|
{% if page.tags and page.tags != empty %} |
|
|
|
|
<!-- |
|
|
|
|
<small class="tags"> |
|
|
|
|
{% assign tags = page.tags %} |
|
|
|
|
<span itemprop="keywords"> |
|
|
|
|
< |
|
|
|
|
{% for tag in tags %} |
|
|
|
|
<a class="tag" |
|
|
|
|
href="/tags/#{{tag | downcase | slugify}}">{{tag | upcase }}</a>{% unless forloop.last %},{% endunless %} |
|
|
|
|
{% endfor %} |
|
|
|
|
/> |
|
|
|
|
</span> |
|
|
|
|
</small> |
|
|
|
|
--> |
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
<time hidden datetime="{{ page.modified | date_to_xmlschema }}" itemprop="dateModified"> |
|
|
|
|
{{ page.date | date: "%b %d, %Y" }} |
|
|
|
|
</time> |
|
|
|
|