diff --git a/content/posts/latest-macos-in-qemu-kvm.md b/content/blogs/latest-macos-in-qemu-kvm.md similarity index 100% rename from content/posts/latest-macos-in-qemu-kvm.md rename to content/blogs/latest-macos-in-qemu-kvm.md diff --git a/content/posts/release-rate-2.0.md b/content/blogs/release-rate-2.0.md similarity index 100% rename from content/posts/release-rate-2.0.md rename to content/blogs/release-rate-2.0.md diff --git a/content/posts/what-is-local-first.md b/content/blogs/what-is-local-first.md similarity index 99% rename from content/posts/what-is-local-first.md rename to content/blogs/what-is-local-first.md index 841133f..8c2be26 100644 --- a/content/posts/what-is-local-first.md +++ b/content/blogs/what-is-local-first.md @@ -33,7 +33,7 @@ Editing a Google Doc with several people looks and feels like magic - we can see All of our data is stored in the cloud, and it is easy to collaborate and work on files this way… until it isn’t. In March 2021, customers of OVH Cloud who stored their files in the Strasbourg data center discovered this firsthand when their files went up in smoke: -![OVH datacenter on fire](https://ark-builders.github.io/website2/images/ovh_fire.jpg) +![OVH datacenter on fire](/images/ovh_fire.jpg) Ok, that’s a super extreme example - and everyone should save important files and deployments on multiple machines - whether local or cloud. But users have been locked out of Google Accounts. When you stop paying for BigCorp Cloud, how long until your data is removed? What if your card has expired, and the emails are going to a former employee's e-mail account? Will you lose your files forever? At a previous position, months of work was lost when a colleague decided that a specific tenant was no longer in use, and deleted it without looking at usage, or asking the team if the data on the server was still needed. diff --git a/src/lib/components/Blog.svelte b/src/lib/components/Blog.svelte index 245193d..24575d6 100644 --- a/src/lib/components/Blog.svelte +++ b/src/lib/components/Blog.svelte @@ -1,6 +1,7 @@ + +{@html transformedContent} diff --git a/src/utils/entries.ts b/src/utils/entries.ts index c5220d6..96315cf 100644 --- a/src/utils/entries.ts +++ b/src/utils/entries.ts @@ -10,7 +10,7 @@ if (browser) { // we have to have separate functions for this because Vite only accepts literal strings for import.meta.glob const getPosts = () => { - return Object.entries(import.meta.glob('/content/posts/**/*.md', { eager: true })) + return Object.entries(import.meta.glob('/content/blogs/**/*.md', { eager: true })) } const getIssues = () => {