diff --git a/config/filters/index.js b/config/filters/index.js index 76324a8e..e71d09e1 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -38,10 +38,8 @@ export default { if (!string) return return string.replace(utmPattern, '') }, - getPostImage: (image) => { - if (image && image !== '') return image - return `${BASE_URL}/assets/img/ogi/default.jpg` - }, + + // analytics getPopularPosts: (posts, analytics) => { return posts .filter((post) => { @@ -52,6 +50,8 @@ export default { return visitors(b) - visitors(a) }) }, + + // tags tagLookup: (url, tagMap) => { if (!url) return if (url.includes('thestorygraph.com')) return '#Books #NowReading #TheStoryGraph' diff --git a/package.json b/package.json index aeff514e..acbe4d74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "7.10.3", + "version": "7.10.4", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index 2483eb72..35030a54 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -16,7 +16,6 @@ property="og:image" content="{%- if schema == 'blog' %}{{ meta.url }}/assets/img/social-preview/{{ title | slugify }}-preview.jpeg{%- else -%}{{ meta.meta_data.opengraph_default }}{% endif -%}" /> - diff --git a/src/assets/img/ogi/about.jpg b/src/assets/img/ogi/about.jpg deleted file mode 100644 index c6e630b8..00000000 Binary files a/src/assets/img/ogi/about.jpg and /dev/null differ diff --git a/src/assets/img/ogi/blogroll.jpg b/src/assets/img/ogi/blogroll.jpg deleted file mode 100644 index b46eedb5..00000000 Binary files a/src/assets/img/ogi/blogroll.jpg and /dev/null differ diff --git a/src/assets/img/ogi/contact.jpg b/src/assets/img/ogi/contact.jpg deleted file mode 100644 index 3d4aae13..00000000 Binary files a/src/assets/img/ogi/contact.jpg and /dev/null differ diff --git a/src/assets/img/ogi/default.jpg b/src/assets/img/ogi/default.jpg deleted file mode 100644 index a1c71d8b..00000000 Binary files a/src/assets/img/ogi/default.jpg and /dev/null differ diff --git a/src/assets/img/ogi/feeds.jpg b/src/assets/img/ogi/feeds.jpg deleted file mode 100644 index 9ea12b5c..00000000 Binary files a/src/assets/img/ogi/feeds.jpg and /dev/null differ diff --git a/src/assets/img/ogi/links.jpg b/src/assets/img/ogi/links.jpg deleted file mode 100644 index 6826e4fe..00000000 Binary files a/src/assets/img/ogi/links.jpg and /dev/null differ diff --git a/src/assets/img/ogi/now.jpg b/src/assets/img/ogi/now.jpg deleted file mode 100644 index 3c237087..00000000 Binary files a/src/assets/img/ogi/now.jpg and /dev/null differ diff --git a/src/assets/img/ogi/referrals.jpg b/src/assets/img/ogi/referrals.jpg deleted file mode 100644 index 4e4b6dd7..00000000 Binary files a/src/assets/img/ogi/referrals.jpg and /dev/null differ diff --git a/src/assets/img/ogi/search.jpg b/src/assets/img/ogi/search.jpg deleted file mode 100644 index 2888b933..00000000 Binary files a/src/assets/img/ogi/search.jpg and /dev/null differ diff --git a/src/assets/img/ogi/stats.jpg b/src/assets/img/ogi/stats.jpg deleted file mode 100644 index 21589254..00000000 Binary files a/src/assets/img/ogi/stats.jpg and /dev/null differ diff --git a/src/assets/img/ogi/webrings.jpg b/src/assets/img/ogi/webrings.jpg deleted file mode 100644 index d22c0270..00000000 Binary files a/src/assets/img/ogi/webrings.jpg and /dev/null differ diff --git a/src/links.html b/src/links.html index 5328b1dc..07d0e675 100644 --- a/src/links.html +++ b/src/links.html @@ -4,7 +4,6 @@ layout: default pagination: data: links size: 30 -image: /assets/img/ogi/links.jpg --- {% capture css %} {% render "./assets/styles/pages/links.css" %} diff --git a/src/pages/about.md b/src/pages/about.md index e3ca352a..5b58be1f 100644 --- a/src/pages/about.md +++ b/src/pages/about.md @@ -2,7 +2,6 @@ title: About layout: default permalink: /about.html -image: /assets/img/ogi/about.jpg --- {% capture css %} {% render "../assets/styles/pages/about.css" %} diff --git a/src/pages/blogroll.html b/src/pages/blogroll.html index 4fbea750..8a29e798 100644 --- a/src/pages/blogroll.html +++ b/src/pages/blogroll.html @@ -2,7 +2,6 @@ title: Blogroll layout: default permalink: /blogroll.html -image: /assets/img/ogi/blogroll.jpg description: 'These are awesome blogs that I enjoy and you may enjoy too.' --- {% capture css %} diff --git a/src/pages/contact-success.html b/src/pages/contact-success.html index a49663a9..f6c24ab6 100644 --- a/src/pages/contact-success.html +++ b/src/pages/contact-success.html @@ -2,7 +2,6 @@ title: Success layout: default permalink: /contact/success.html -image: /assets/img/ogi/contact.jpg ---
My first post was published on {{ collections.postStats.firstPostDate | dateToReadableDate }} and my most recent one was published on {{ collections.postStats.lastPostDate | dateToReadableDate }}. I've published {{ collections.postStats.postCount }} posts containing {{ collections.postStats.totalWordCount }} words and {{ collections.postStats.totalCodeBlockCount }} code samples.
Posts have, on average, {{ collections.postStats.avgWordCount | round }} words and a gap of {{ collections.postStats.avgDays | round }} days between them.
diff --git a/src/pages/tag-list.html b/src/pages/tag-list.html index 824cd0ea..b10329c1 100644 --- a/src/pages/tag-list.html +++ b/src/pages/tag-list.html @@ -5,7 +5,6 @@ pagination: size: 1 alias: tag permalink: /tags/{{ tag }}/ -image: /assets/img/ogi/tags.jpg eleventyComputed: title: '{{ tag }}' --- diff --git a/src/pages/webrings.md b/src/pages/webrings.md index 3f71d16a..32a750ac 100644 --- a/src/pages/webrings.md +++ b/src/pages/webrings.md @@ -3,7 +3,6 @@ title: Webrings layout: default permalink: /webrings.html description: "Webrings are awesome! These are the ones I'm a member of." -image: /assets/img/ogi/webrings.jpg --- {% capture css %} {% render "../assets/styles/pages/webrings.css" %}