blob: 10ebe3bc9ad6707277c8435d7ef243db2383563d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div itemscope :itemtype="schema('Blog')" role="feed" aria-busy="false" webc:for="(post, index) of collections.post">
<article itemprop="blogPost" itemscope :itemtype="schema('BlogPosting')" :aria-posinset="index"
:aria-setsize="collections.post.lenght">
<h3 itemprop="headline"><a :href="post.url" itemprop="sameAs" @text="post.data.title"></a></h3>
<small>
<time :datetime="htmlDateString(post.date)" itemprop="datePublished" @text="readableDate(post.date)"></time>
-
<span itemprop=" author" itemscope :itemtype="schema('Person')"></span>
<a :href="metadata.author.url" rel="author" itemprop="url">
<span itemprop="name" @text="metadata.author.name">
</a>
</small>
<p itemprop="abstract" @text="post.data.description"></p>
</article>
</div>
|