blob: bbe28d9e7d460d59e61672cacdcf0efe51c828bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---json
{
"layout": "base.html",
"tags": [
"post"
]
}
---
<article itemscope itemtype={% schema "BlogPosting" %}>
<h1>{{ title }}</h1>
<small>
<time datetime="{{ page.date | htmlDateString }}" itemprop="datePublished">{{ page.date | readableDate
}}</time>
- <span itemprop="author" itemscope itemtype="{% schema " Person" %}>
<a href="{{metadata.author.url}}" rel="author" itemprop="url">
<span itemprop="name">{{metadata.author.name}}</span>
</a>
</span>
</small>
<div temprop: "articleBody">{{ content | safe }}</div>
</article>
|