diff --git a/.eleventy.js b/.eleventy.js
index 10e5bd6d..d1750a9a 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -6,7 +6,7 @@ import markdownItAnchor from 'markdown-it-anchor'
import markdownItFootnote from 'markdown-it-footnote'
import filters from './config/filters/index.js'
import { copyErrorPages } from './config/events/index.js'
-import { popularPosts, processContent, albumReleasesCalendar } from './config/collections/index.js'
+import { processContent, albumReleasesCalendar } from './config/collections/index.js'
import { DateTime } from 'luxon'
// load .env
@@ -52,7 +52,6 @@ export default async function (eleventyConfig) {
})
// collections
- eleventyConfig.addCollection('popularPosts', popularPosts)
eleventyConfig.addCollection('allContent', (collection) => {
const { allContent } = processContent(collection)
return allContent
diff --git a/.env b/.env
index 348e5e6d..04ccc42a 100644
--- a/.env
+++ b/.env
@@ -1,4 +1,3 @@
-API_KEY_PLAUSIBLE=
ACCOUNT_ID_PLEX=
SUPABASE_URL=
SUPABASE_KEY=
diff --git a/config/collections/index.js b/config/collections/index.js
index ce105be0..47b71d1a 100644
--- a/config/collections/index.js
+++ b/config/collections/index.js
@@ -191,17 +191,4 @@ export const albumReleasesCalendar = (collection) => {
}
return value
-}
-
-export const popularPosts = (collection) => {
- const collectionData = collection.getAll()[0]
- const { data } = collectionData
- const { posts, analytics } = data
-
- return posts
- .filter((post) => analytics.find((p) => p.page.includes(post.slug)))
- .sort((a, b) => {
- const visitors = (page) => analytics.filter((p) => p.page.includes(page.slug)).pop()?.visitors
- return visitors(b) - visitors(a)
- })
}
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index 08f7547d..b6ea2320 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "coryd.dev",
- "version": "21.10.3",
+ "version": "22.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
- "version": "21.10.3",
+ "version": "22.0.0",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.4.0",
diff --git a/package.json b/package.json
index f4b6b71d..ab49ba1a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "coryd.dev",
- "version": "21.10.3",
+ "version": "22.0.0",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"scripts": {
@@ -9,7 +9,6 @@
"build": "ELEVENTY_PRODUCTION=true eleventy",
"update:deps": "npm upgrade && ncu",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
- "publish:analytics": "node scripts/worker-build.mjs analytics && wrangler deploy --env production --config workers/analytics/wrangler.toml",
"publish:contact": "node scripts/worker-build.mjs contact && wrangler deploy --env production --config workers/contact/wrangler.toml",
"publish:playing": "node scripts/worker-build.mjs playing && wrangler deploy --env production --config workers/playing/wrangler.toml",
"publish:rebuild": "node scripts/worker-build.mjs rebuild && wrangler deploy --env production --config workers/rebuild/wrangler.toml",
diff --git a/src/assets/styles/base/index.css b/src/assets/styles/base/index.css
index ce316fb2..f94557a6 100644
--- a/src/assets/styles/base/index.css
+++ b/src/assets/styles/base/index.css
@@ -430,6 +430,10 @@ main {
.home-status,
article {
margin-bottom: var(--sizing-base);
+}
+
+.home-status,
+.posts-wrapper article {
border-bottom: 1px solid var(--gray-light);
}
diff --git a/src/assets/styles/components/addon-links.css b/src/assets/styles/components/addon-links.css
deleted file mode 100644
index d744bb68..00000000
--- a/src/assets/styles/components/addon-links.css
+++ /dev/null
@@ -1,29 +0,0 @@
-.addon-links {
- display: grid;
- gap: var(--sizing-sm);
- grid-template-columns: repeat(1, 1fr);
-
- & div {
- & > h3 {
- margin-top: 0;
- }
-
- &:last-of-type h3 {
- margin-top: var(--sizing-base);
- }
- }
-
- & .link-list {
- margin-bottom: 0;
- }
-}
-
-@media screen and (min-width: 768px) {
- .addon-links {
- grid-template-columns: repeat(2, 1fr);
-
- & div:last-of-type h3 {
- margin-top: 0;
- }
- }
-}
\ No newline at end of file
diff --git a/src/assets/styles/index.css b/src/assets/styles/index.css
index 0dbf6b08..43c50f6d 100644
--- a/src/assets/styles/index.css
+++ b/src/assets/styles/index.css
@@ -25,7 +25,6 @@
@import url('./pages/webrings.css') layer(page);
/* component styles */
-@import url('./components/addon-links.css') layer(components);
@import url('./components/badge-grid.css') layer(components);
@import url('./components/banners.css') layer(components);
@import url('./components/buttons.css') layer(components);
diff --git a/src/data/analytics.js b/src/data/analytics.js
deleted file mode 100644
index 0b6ee31b..00000000
--- a/src/data/analytics.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import EleventyFetch from '@11ty/eleventy-fetch'
-
-export default async function () {
- const API_KEY_PLAUSIBLE = process.env.API_KEY_PLAUSIBLE
- const url =
- 'https://plausible.io/api/v1/stats/breakdown?site_id=coryd.dev&period=6mo&property=event:page&limit=30'
- const res = EleventyFetch(url, {
- duration: '1h',
- type: 'json',
- fetchOptions: {
- headers: {
- Authorization: `Bearer ${API_KEY_PLAUSIBLE}`,
- },
- },
- }).catch()
- const pages = await res
- return pages['results'].filter((p) => p['page'].includes('posts'))
-}
\ No newline at end of file
diff --git a/src/includes/base.liquid b/src/includes/base.liquid
index 08bd4c9b..75702fe5 100644
--- a/src/includes/base.liquid
+++ b/src/includes/base.liquid
@@ -107,8 +107,7 @@
-
-
+
{{ content }}
-