blob: ece8fe4a2409d05071fa9e0b4398210d4c9c51dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
---
layout: default
---
<article itemtype="http://schema.org/Article" itemscope>
<link itemprop="mainEntityOfPage" itemscope href="{{ page.url | absolute_url | uri_escape }}" />
<link itemprop="image" itemscope href="{{ page.image | default: site.image | absolute_url | uri_escape }}" />
<!-- Header -->
<header class="page-header">
<h1 class="text-muted">
<span itemprop="headline">{{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</span>
<p><small><time itemprop="datePublished" datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date_to_long_string }}</time></small></p>
</h1>
</header>
<!-- Description -->
<meta itemprop="description" content="{{ page.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" />
<!-- Author -->
<section itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="email" content="{{ site.author.email | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" />
<meta itemprop="name" content="{{ site.author.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" />
</section>
<!-- Content -->
<section itemprop="articleBody">
{{ content }}
</section>
<!-- Comments -->
{% include disqus.html %}
</article>
|