diff --git a/.eleventy.js b/.eleventy.js
index 86609794..68dad7df 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -1,6 +1,5 @@
import syntaxHighlight from '@11ty/eleventy-plugin-syntaxhighlight'
import tablerIcons from 'eleventy-plugin-tabler-icons'
-import pluginRss from '@11ty/eleventy-plugin-rss'
import postGraph from '@rknightuk/eleventy-plugin-post-graph'
import embedEverything from 'eleventy-plugin-embed-everything'
@@ -12,7 +11,7 @@ import htmlmin from 'html-minifier-terser'
import filters from './config/filters/index.js'
import { slugifyString } from './config/utils/index.js'
import { svgToJpeg } from './config/events/index.js'
-import { tagList, tagMap, postStats } from './config/collections/index.js'
+import { tagList, tagMap, postStats, tagsSortedByCount } from './config/collections/index.js'
import { img } from './config/shortcodes/index.js'
import { execSync } from 'child_process'
@@ -84,6 +83,7 @@ export default async function (eleventyConfig) {
eleventyConfig.addCollection('tagList', tagList)
eleventyConfig.addCollection('tagMap', tagMap)
eleventyConfig.addCollection('postStats', postStats)
+ eleventyConfig.addCollection('tagsSortedByCount', tagsSortedByCount)
const md = markdownIt({ html: true, linkify: true })
md.use(markdownItAnchor, {
diff --git a/_redirects b/_redirects
index d7d38dca..0952c0a6 100644
--- a/_redirects
+++ b/_redirects
@@ -30,6 +30,7 @@
/tags/.env /tags/env 301!
# 404s
+/sitemap.txt /sitemap.xml 301!
/assets/img/social-preview/adding-a-light/dark-theme-toggle-preview.jpeg /assets/img/social-preview/adding-a-light-dark-theme-toggle-preview.jpeg 301!
/assets/img/social-card.jpg /assets/img/ogi/default.jpg 301!
/posts / 301!
@@ -48,7 +49,7 @@
# general
/articles/ / 301!
-/sitemap.txt /sitemap.xml 301!
+/tags /search 301!
/mastodon https://social.lol/@cory 301!
/coffee https://www.buymeacoffee.com/cory 301!
/speedlify https://speedlify.coryd.dev 301!
diff --git a/config/collections/index.js b/config/collections/index.js
index acc15b61..d959e182 100644
--- a/config/collections/index.js
+++ b/config/collections/index.js
@@ -38,6 +38,23 @@ export const tagMap = (collection) => {
return tags
}
+export const tagsSortedByCount = (collectionApi) => {
+ const tagStats = {};
+ const posts = collectionApi.getFilteredByGlob('src/posts/**/*.md').sort((a, b) => {
+ return a.date - b.date;
+ });
+ posts.forEach((post) => {
+ post.data.tags.forEach((tag) => {
+ if (!tagStats[tag]) tagStats[tag] = 1;
+ if (tagStats[tag]) tagStats[tag] = tagStats[tag] + 1;
+ });
+ });
+ const deletedTags = ['posts', 'politics', 'net neutrality'];
+ deletedTags.forEach(tag => delete tagStats[tag]);
+ const tagStatsArr = Object.entries(tagStats);
+ return tagStatsArr.sort((a, b) => b[1] - a[1]).map(([key, value]) => `${key}`);
+}
+
export const postStats = (collectionApi) => {
const oneDayMilliseconds = 1000 * 60 * 60 * 24
const statsObject = {
diff --git a/config/filters/index.js b/config/filters/index.js
index 1ffbe5c3..24aa04fd 100644
--- a/config/filters/index.js
+++ b/config/filters/index.js
@@ -184,4 +184,14 @@ export default {
}
return normalized
}),
-}
+
+ // posts
+ formatTag: (string) => {
+ const capitalizeFirstLetter = (string) => {
+ return string.charAt(0).toUpperCase() + string.slice(1);
+ }
+ if (string === 'iOS' || string === 'macOS') return `#${string}`
+ if (!string.includes(' ')) return `#${capitalizeFirstLetter(string)}`
+ return `#${string.split(' ').map(s => capitalizeFirstLetter(s)).join('')}`
+ }
+}
\ No newline at end of file
diff --git a/package.json b/package.json
index 261f0b40..5874011f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "coryd.dev",
- "version": "6.9.7",
+ "version": "7.0.0",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {
diff --git a/src/_data/nav.js b/src/_data/nav.js
index 8e87ba41..be6e9a27 100644
--- a/src/_data/nav.js
+++ b/src/_data/nav.js
@@ -11,8 +11,7 @@ export default async function () {
{ name: 'Now' },
{ name: 'About' },
{ name: 'Links', icon: 'link' },
- { name: 'Tags', icon: 'tags' },
- { name: 'Search', icon: 'search', class: 'client-side' },
+ { name: 'Search', icon: 'search' },
{ name: 'Feeds', icon: 'rss' },
{ name: 'Mastodon', icon: 'brand-mastodon' },
],
diff --git a/src/_includes/main.liquid b/src/_includes/main.liquid
index 98eb0ae5..c5afe542 100644
--- a/src/_includes/main.liquid
+++ b/src/_includes/main.liquid
@@ -5,5 +5,5 @@ layout: base
I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading, tv and movies.
- {% render "partials/now/status.liquid", status:status %} - {% render "partials/now-playing.liquid" %} -I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading, tv and movies. Lately I've been{% if artist %} listening to a lot of {{ artist.title }},{% endif %} reading {{ book.title }} and watching {{ show.name }}.
+ {% render "partials/now/status.liquid", status:status %} + {% render "partials/now-playing.liquid" %}