diff options
author | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2024-12-15 14:34:00 +0530 |
---|---|---|
committer | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2024-12-15 14:34:00 +0530 |
commit | e1634059a75054c8f7dcc5ece66d1222fb18597c (patch) | |
tree | 4b58bae881fb11c649f97f91ace6c6f96ab93a25 /src/posts.html | |
parent | Deal with inaccesible public dir and missing sitemap (diff) | |
download | sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.gz sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.bz2 sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.lz sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.xz sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.tar.zst sudomsg-e1634059a75054c8f7dcc5ece66d1222fb18597c.zip |
Updated deps
Diffstat (limited to 'src/posts.html')
-rw-r--r-- | src/posts.html | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/src/posts.html b/src/posts.html index fde3bfd..10ebe3b 100644 --- a/src/posts.html +++ b/src/posts.html @@ -1,20 +1,10 @@ ----json -{ -"layout": "page", -"title": "Posts", -"eleventyNavigation": { -"key": "Posts", -"order": 2 -} -} ---- <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> - + <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"> @@ -22,4 +12,4 @@ </small> <p itemprop="abstract" @text="post.data.description"></p> </article> -</div> +</div>
\ No newline at end of file |