From 9c97f442615754a2a9f88ec8c994f7529906ad52 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Mon, 8 Jul 2024 12:09:39 -0600 Subject: [PATCH] fix: remove page views View counts are not reliable since they are not tracked in a db, so just remove them. --- src/layouts/post.astro | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/layouts/post.astro b/src/layouts/post.astro index aba5655..4d033cb 100644 --- a/src/layouts/post.astro +++ b/src/layouts/post.astro @@ -51,14 +51,6 @@ const AUTHOR_AVATAR = content.authorImage ? content.authorImage : SITE?.authorIm { new Intl.DateTimeFormat('en-US', { dateStyle: 'full' }).format(new Date(content.date))} - - { USE_VIEW_STATS && ` | `} - { USE_VIEW_STATS && - - - } - -