From 47d89eaab99a7ca67a2feeddac079b56d834b0e3 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Mon, 10 Jun 2024 23:24:16 -0500 Subject: [PATCH] Add auto discovery links for the feeds --- build_garden.js | 5 +---- site/.vitepress/config.ts | 7 +++++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build_garden.js b/build_garden.js index d9b7106b..72f74aa6 100644 --- a/build_garden.js +++ b/build_garden.js @@ -287,10 +287,7 @@ prev: false next: false ---
-

-Changelog - -

+

Changelog

This feed starts when I formatted the site to be a Digital Garden. If you'd like to look further into this site's history, check here!

${entries.join("\n\n")} diff --git a/site/.vitepress/config.ts b/site/.vitepress/config.ts index 4e5cd44c..a6f628fd 100644 --- a/site/.vitepress/config.ts +++ b/site/.vitepress/config.ts @@ -4,7 +4,7 @@ import { defineConfig } from "vitepress"; module.exports = { lang: "en-US", title: 'The Paper Pilot', - description: 'The Paper Pilot Personal Website', + description: 'The Paper Pilot\'s Digital Garden', vite: { plugins: [ SearchPlugin({ @@ -29,7 +29,10 @@ module.exports = { ['link', { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto+Mono:ital,wght@0,400;0,600;1,400&display=swap' }], ['link', { rel: 'manifest', href: '/site.webmanifest' }], ['link', { rel: 'alternate', type: "text/mf2+html", href: '/changelog' }], - ['meta', { name: 'og:description', content: 'The Paper Pilot portfolio site' }] + ['link', { rel: 'alternate', type: "application/rss+xml", title: 'Changelog', href: '/changelog/rss' }], + ['link', { rel: 'alternate', type: "application/atom+xml", title: 'Changelog', href: '/changelog/atom' }], + ['link', { rel: 'alternate', type: "application/json+xml", title: 'Changelog', href: '/changelog/json' }], + ['meta', { name: 'og:description', content: 'The Paper Pilot\'s Digital Garden' }] ], lastUpdated: true, cleanUrls: 'with-subfolders',