diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pages/blog/[...slug].astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index a142db4..39522a1 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -27,8 +27,8 @@ const { Content, remarkPluginFrontmatter } = await post.render(); <p> <small> Posted - <time datetime="#">#</time> - by Valentin Popov ‐ + <time datetime={post.data.pubDate.toISOString()}>{post.data.pubDate.toDateString()}</time> + by {post.data.author} ‐ <strong>{remarkPluginFrontmatter.minutesRead}</strong> </small> </p> |