From de8962bdcc01181ccc5f23c85921b58c7cbed6e5 Mon Sep 17 00:00:00 2001
From: pancakes
Date: Sat, 13 Sep 2025 17:39:22 +1000
Subject: [PATCH] Add blog post list and pages
---
.../BlogPosts/minecraft-bedrock-linux.md | 157 +++++
PancakesWeb/BlogPosts/misskey-comparison.md | 635 ++++++++++++++++++
.../Components/Layout/MainLayout.razor | 1 +
PancakesWeb/Components/Pages/BlogPost.razor | 91 +++
.../Components/Pages/BlogPost.razor.css | 29 +
PancakesWeb/Components/Pages/Home.razor | 2 +-
PancakesWeb/Components/UI/BlogPosts.razor | 22 +
PancakesWeb/Components/UI/BlogPosts.razor.cs | 109 +++
PancakesWeb/Components/UI/BlogPosts.razor.css | 12 +
PancakesWeb/Components/UI/Navbar.razor.css | 4 +
PancakesWeb/Components/UI/RenderDate.razor | 7 -
.../Components/UI/RenderDateOnly.razor | 7 +
.../Components/UI/RenderDateTime.razor | 7 +
.../Components/UI/RenderTimeOnly.razor | 7 +
PancakesWeb/PancakesWeb.csproj | 5 +
.../minecraft-bedrock-linux/demo.webm | Bin 0 -> 6691519 bytes
.../minecraft-bedrock-linux/header.webp | Bin 0 -> 114842 bytes
.../misskey-comparison/banner.webp | Bin 0 -> 19062 bytes
.../misskey-comparison/catodon.ico | Bin 0 -> 91981 bytes
.../misskey-comparison/firefish.svg | 153 +++++
.../misskey-comparison/foundkey.svg | 1 +
.../misskey-comparison/iceshrimp.png | Bin 0 -> 26665 bytes
.../misskey-comparison/misskey.png | Bin 0 -> 23198 bytes
.../misskey-comparison/sharkey.png | Bin 0 -> 7144 bytes
PancakesWeb/wwwroot/style.css | 36 +
25 files changed, 1277 insertions(+), 8 deletions(-)
create mode 100644 PancakesWeb/BlogPosts/minecraft-bedrock-linux.md
create mode 100644 PancakesWeb/BlogPosts/misskey-comparison.md
create mode 100644 PancakesWeb/Components/Pages/BlogPost.razor
create mode 100644 PancakesWeb/Components/Pages/BlogPost.razor.css
create mode 100644 PancakesWeb/Components/UI/BlogPosts.razor
create mode 100644 PancakesWeb/Components/UI/BlogPosts.razor.cs
create mode 100644 PancakesWeb/Components/UI/BlogPosts.razor.css
delete mode 100644 PancakesWeb/Components/UI/RenderDate.razor
create mode 100644 PancakesWeb/Components/UI/RenderDateOnly.razor
create mode 100644 PancakesWeb/Components/UI/RenderDateTime.razor
create mode 100644 PancakesWeb/Components/UI/RenderTimeOnly.razor
create mode 100644 PancakesWeb/wwwroot/post-assets/minecraft-bedrock-linux/demo.webm
create mode 100644 PancakesWeb/wwwroot/post-assets/minecraft-bedrock-linux/header.webp
create mode 100644 PancakesWeb/wwwroot/post-assets/misskey-comparison/banner.webp
create mode 100644 PancakesWeb/wwwroot/post-assets/misskey-comparison/catodon.ico
create mode 100644 PancakesWeb/wwwroot/post-assets/misskey-comparison/firefish.svg
create mode 100644 PancakesWeb/wwwroot/post-assets/misskey-comparison/foundkey.svg
create mode 100644 PancakesWeb/wwwroot/post-assets/misskey-comparison/iceshrimp.png
create mode 100644 PancakesWeb/wwwroot/post-assets/misskey-comparison/misskey.png
create mode 100644 PancakesWeb/wwwroot/post-assets/misskey-comparison/sharkey.png
diff --git a/PancakesWeb/BlogPosts/minecraft-bedrock-linux.md b/PancakesWeb/BlogPosts/minecraft-bedrock-linux.md
new file mode 100644
index 0000000..a6c87d6
--- /dev/null
+++ b/PancakesWeb/BlogPosts/minecraft-bedrock-linux.md
@@ -0,0 +1,157 @@
+---
+title: "Minecraft: Bedrock Edition on Waydroid"
+description: "A guide to running Minecraft: Bedrock Edition on Linux with Waydroid"
+published: 2024-02-29
+edited: 2024-04-24T15:03:00.000+10:00
+footer: cc_by
+header: header.webp
+header_alt: "neowofetch of my PC with Minecraft: Bedrock Edition in the background"
+header_caption: "Minecraft: Bedrock Edition running on my PC"
+---
+
+## Introduction
+
+Minecraft: Bedrock Edition is Microsoft's cross-platform version of the game. With the introduction of the Better Together Update it allowed players to play together regardless of platform through Xbox. Bedrock boasts its cross-play support for Windows, Xbox, Nintendo Switch, PlayStation, and mobile. However, macOS and Linux support are notably absent from Bedrock. While I am not aware of a workaround for macOS you can play Bedrock on Linux using [Waydroid](https://waydro.id/). This solution runs fairly well and works with cross-play because it's just *special* Android.
+
+## Prerequisites
+
+The following things are required to play Bedrock through this method:
+
+- A computer running Linux and systemd
+ - If you're running Linux but don't know what systemd is you're probably fine :3
+- A Wayland desktop environment / compositor
+ - GNOME
+ - KDE Plasma
+ - Sway
+ - river (what I'm using for this)
+ - COSMIC (Epoch, not tweaked GNOME)
+- A graphics card compatible with Mesa
+ - AMD Radeon
+ - Intel
+ - NVIDIA with Nouvou+NVK (untested)
+- A Google account that owns Minecraft for Android on the Play Store
+
+## Installation
+
+Before setting up Waydroid there are some distribution specific steps you must follow.
+
+### Arch Linux
+
+You will need an AUR helper or know how to manually install AUR packages. This page assumes you are using paru. You either need the binder_linux DKMS modules or the Linux Zen kernel.
+
+#### binder_linux
+
+To install the binder_linux DKMS modules install the binder_linux-dkms package from the AUR:
+
+```bash
+paru -S binder_linux-dkms
+```
+
+#### Linux Zen
+
+To install the Linux Zen kernel run the following command:
+
+```bash
+sudo pacman -S linux-zen linux-zen-headers
+```
+
+You will also need to change your system to boot with Zen.
+
+#### Waydroid AUR
+
+You can then install Waydroid from the AUR:
+
+```bash
+paru -S waydroid
+```
+
+### Debian/Ubuntu
+
+Install Waydroid from the offficial repository:
+
+```bash
+curl https://repo.waydro.id | sudo bash
+sudo apt install waydroid
+```
+
+### Fedora
+
+Install the Waydroid package:
+
+```bash
+sudo dnf install waydroid
+```
+
+### NixOS
+
+In `/etc/nixos/configuration.nix` or in your flake add the following and rebuild:
+
+```nix
+virtualisation.waydroid.enable = true;
+```
+
+### Other
+
+View the [install instructions](https://docs.waydro.id/usage/install-on-desktops) for your distribution.
+
+## Waydroid Setup
+
+First you need to enable and start the `waydroid-container` service:
+
+```bash
+sudo systemctl enable --now waydroid-container
+```
+
+Once the container has started you can initialize Waydroid with Google apps:
+
+```bash
+sudo waydroid init -s GAPPS
+```
+
+To install apps from Google Play you must "certify" your Waydroid installation:
+
+```bash
+waydroid session start
+sudo waydroid shell
+ANDROID_RUNTIME_ROOT=/apex/com.android.runtime ANDROID_DATA=/data ANDROID_TZDATA_ROOT=/apex/com.android.tzdata ANDROID_I18N_ROOT=/apex/com.android.i18n sqlite3 /data/data/com.google.android.gsf/databases/gservices.db "select * from main where name = \"android_id\";"
+```
+
+Copy the ID from the command output and enter it on the [Google Device registration](https://www.google.com/android/uncertified) page. Then restart the `waydroid-container` service:
+
+```bash
+sudo systemctl restart waydroid-container
+```
+
+## Configure Waydroid
+
+Waydroid has a few settings you can configure from the command line. The one you will most likely want to set is the resolution, especially if you use fractional scaling. Waydroid currently doesn't appear to properly support fractional scaling so you will need to account for that when setting the resolution. To calculate the scaled resolution divide your display's resolution by the scaling factor, for 1920×1080 at 150% that's 1920 / 1.5 = 1280 and 1080 / 1.5 = 720. To set the resolution to 1280×720 run:
+
+```bash
+waydroid prop set persist.waydroid.width "1280"
+waydroid prop set persist.waydroid.height "720"
+```
+
+After changing any properties you need to restart `waydroid-container`:
+
+```bash
+sudo systemctl restart waydroid-container
+```
+
+Some extra settings you might want to change in Android's System Settings are:
+
+- Sound > Media volume: 100%
+ - This will make the game audio match your system volume
+- System > Language & input > Physical keyboard > Use on-screen keyboard: Off
+ - This prevents Android's on-screen keyboard from appearing since you probably have a physical keyboard
+
+## Play Minecraft
+
+Open Waydroid's full system UI and navigate to the Google Play Store. Sign in with your Google account if you aren't already. Search for and download Minecraft.
+
+You should be able to launch Minecraft from your desktop environment's application launcher or from the Waydroid full system UI. Some caveats to this solution are that render distance is limited to 32 chunks and you can't enable RTX even if you get it working on NVIDIA. Keyboard and mouse work out of the box and you may be able to pass through a controller but I couldn't get it to work in my limited testing.
+
+This video shows Minecraft: Bedrock Edition running with 32 chunks through Waydroid on NixOS (the video is much older than the page header) with river.
+
+
diff --git a/PancakesWeb/BlogPosts/misskey-comparison.md b/PancakesWeb/BlogPosts/misskey-comparison.md
new file mode 100644
index 0000000..b5843eb
--- /dev/null
+++ b/PancakesWeb/BlogPosts/misskey-comparison.md
@@ -0,0 +1,635 @@
+---
+title: Comparison of Misskey Forks
+description: The Misskey family of Fediverse servers is quite large. While they all share a common origin there are some notable feature differences between them.
+published: 2024-02-02
+edited: 2025-02-10T19:24:00.000+10:00
+footer: cc_by
+header: banner.webp
+header_alt: The Misskey wordmark in black on a white background with green circles
+header_caption: Image from Misskey Hub, licensed under CC BY-SA 4.0.
+---
+
+This page aims to provide a rough timeline of each notable fork and a comparison of their features. The feature comparisons are for the latest stable releases of stable forks and development releases of developing/unmainted forks. If anything on this page is incorrect or out of date I'd appreciate if you could let me know: [@pancakes@meow.company](https://shrimp.meow.company/@pancakes).
+
+## Featured Forks
+
+| Icon | Name | Version | Account | Website | Repository |
+|-----------------------------------------------------------------------------|----------------|------------------|--------------------------------------------------------------------|-------------------------------|-----------------------------------------------------|
+| {.inline-icon} | Misskey | 2024.11.0 | None | | |
+| {.inline-icon} | FoundKey | v13.0.0-preview6 | None | None | |
+| {.inline-icon} | Firefish | v20241205 | [@firefish@info.firefish.dev](https://info.firefish.dev/@firefish) | None | |
+| {.inline-icon} | Iceshrimp (JS) | v2023.12.11 | None | None | |
+| {.inline-icon} | Sharkey | 2024.11.2 | [@Sharkey@sharkey.team](https://sharkey.team/@Sharkey) | | |
+
+### Iceshrimp
+
+In previous versions of this page I referred to Iceshrimp (JS) as just "Iceshrimp". Iceshrimp (JS) is currently under a feature freeze as most of the development effort is going towards the rewrite, Iceshrimp.NET. However, Iceshrimp (JS) is not unmaintained and still receives security updates. Please be aware that when the timeline says "Iceshrimp" it is referring to Iceshrimp (JS), not Iceshrimp.NET. Iceshrimp.NET will not be included on this page as it is not a fork of Misskey. For more information about Iceshrimp (JS) and Iceshrimp.NET see the README in the repository linked above.
+
+### Firefish
+
+On 2024-09-05 Firefish entered maintenance mode and will reach end-of-support at the end of 2024. Server admins may want to downgrade to `20240206/1.0.5-rc` and migrate to another *key fork. See the [announcement post](https://info.firefish.dev/notes/9xsukr38m3komd63) for more info.
+
+## Timeline of Events
+
+The following chart is an approximate history of ActivityPub and Misskey. As well as the forks, their versioning, and differing states of activity.
+
+```plaintext
+2016-01-28 ActivityPub W3C First Public Working Draft
+
+2017-02-06 Mastodon v1.0 (included for reference)
+
+2018-04-19 Misskey v0.0.5018
+ |
+ | (peace in the Misskeyverse)
+ |
+2022-06-13 Misskey v12.111.1 ------------| (fork)
+ | |
+2022-07-19 Misskey v12.117.1 |
+ | | (fork) |
+2022-07-20 | Calckey v12.117.1-calc |
+ | | |
+2022-08-05 | | FoundKey v13.0.0-preview1
+ | | |
+2023-06-05 | | FoundKey v13.0.0-preview6
+ | | | (unmaintained)
+ | |
+2023-06-25 | Calckey v14.0.0-rc3 ----| (rebrand)
+ | |
+2023-07-20 | Firefish v1.0.0, v1.0.1 -| (fork)
+ | (version scheme change) | |
+2023-09-14 | | Iceshrimp v2023.09.13-rc1
+ | | |
+2023-09-21 Misskey 2023.9.0-beta.10 | |
+ | | (fork) | |
+2023-10-07 | Sharkey 2023.9.1.beta4 | |
+ | | | |
+2023-11-14 | | | Iceshrimp v2023.12.1
+ | | | | | (fork)
+2023-11-28 | | Firefish v1.0.5-rc | |
+ | | | (unmaintained) | |
+2024-01-09 | | | | Catodon 24.01-dev
+ | | | (transferred/revived) | |
+2024-02-06 | | Firefish v20240206 | |
+ | | | | |
+2024-09-05 | | | (enter maintenance) | |
+ | | | | |
+2024-12-31 | | | (end-of-support) | |
+ | | | |
+```
+
+## Feature Comparison
+
+
+
Comparison of features between Misskey forks
+
+
+
+
Misskey
+
FoundKey
+
Firefish
+
Iceshrimp (JS)
+
Sharkey
+
+
+
+
+
Status
+
Stable
+
Unmaintained
+
Unmaintained
+
Maintenance mode
+
Stable
+
+
+
General
+
+
+
Authorized Fetch
+
No
+
No
+
Yes
+
Yes
+
Yes
+
+
+
Full Text Search
+
Built-in or MeiliSearch
+
ElasticSearch
+
Sonic, MeiliSearch, or ElasticSearch
+
Built-in
+
Built-in or MeiliSearch
+
+
+
Push Notifications
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Tutorial
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Integration
+
+
+
Discord
+
No
+
No
+
Yes
+
Yes
+
No
+
+
+
GitHub
+
No
+
No
+
Yes
+
Yes
+
No
+
+
+
Mastodon API
+
No
+
No
+
Partial
+
Yes
+
Yes
+
+
+
TensorFlow
+
Yes
+
No
+
Yes
+
No
+
No
+
+
+
Webhook
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Timelines
+
+
+
Antennas
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Bubble/Recommended
+
No
+
No
+
Yes
+
Yes
+
Yes
+
+
+
Channels
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Social
+
Yes
+
No
+
Yes
+
Yes
+
Yes
+
+
+
User Lists
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Posts
+
+
+
Federation
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Editing & History
+
Removed in 2023.10.0
+
View only
+
Editing only
+
Editing only
+
Yes
+
+
+
Favorite/Like Button
+
No
+
No
+
Yes
+
Yes
+
Yes
+
+
+
Post Language
+
No
+
No
+
Yes
+
No
+
No
+
+
+
Module Player
+
No
+
Yes
+
Yes
+
No
+
Yes
+
+
+
Boost Visibility
+
No
+
No
+
Yes
+
Yes
+
Yes
+
+
+
Report Posts
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Markdown
+
+
+
Misskey Flavoured Markdown (MFM)
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
MFM border
+
Yes
+
No
+
No
+
Yes
+
Yes
+
+
+
MFM center
+
<center> only
+
<center> only
+
Yes
+
Yes
+
<center> only
+
+
+
MFM crop
+
No
+
No
+
Yes
+
Yes
+
Yes
+
+
+
MFM fade
+
No
+
No
+
Yes
+
Yes
+
Yes
+
+
+
MFM followmouse
+
No
+
No
+
No
+
Yes
+
Yes
+
+
+
Per Note MFM Animation Toggle
+
No
+
No
+
No
+
Yes
+
Yes
+
+
+
Markdown Lists
+
No
+
No
+
No
+
No
+
No
+
+
+
Math Formulas
+
No
+
No
+
Yes
+
Yes
+
Yes
+
+
+
Users
+
+
+
Avatar Decorations
+
Not federated
+
No
+
No
+
No
+
Not federated
+
+
+
Profile Background
+
No
+
No
+
No
+
No
+
Yes
+
+
+
Cat Mode & Speak as Cat
+
Cat Mode only
+
Cat Mode only
+
Yes
+
Yes
+
Yes
+
+
+
Link Verification
+
Yes
+
No
+
Yes
+
Yes
+
Yes
+
+
+
Roles
+
Yes
+
No
+
No
+
No
+
Yes
+
+
+
ListenBrainz Status
+
No
+
No
+
No
+
No
+
Yes
+
+
+
Feeds
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Clips
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Gallery
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Pages
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Post Backfill
+
No
+
No
+
Yes
+
Yes
+
Yes
+
+
+
Mute Users
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Block Users
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Report Users
+
Yes
+
Yes
+
Yes
+
Yes
+
Yes
+
+
+
Disable Post Indexing
+
No
+
No
+
Yes
+
Yes
+
Yes
+
+
+
Import/Export
+
All notes, Favorite notes, Followed users, User lists, Muted users, Blocked
+ users, and Antennas
+
All posts, Followed users, User lists, Muted users, and Blocked users
+
All posts, Followed users, User lists, Muted users, and Blocked users
+
All posts, Followed users, User lists, Muted users, and Blocked users
+
All notes, Favorite notes, Followed users, User lists, Muted users, Blocked
+ users, and Antennas
+
+
+
Post Import
+
No
+
No
+
Mastodon+
+
No
+
Mastodon+, Pleroma, Akkoma, Misskey+, Firefish+, Twitter, Instagram, and
+ Facebook
+
+
+
GDPR Data Subject Access Requests
+
No
+
No
+
No
+
No
+
Yes
+
+
+
Migration
+
Yes
+
Receive only
+
Yes
+
Yes
+
Yes
+
+
+
Moderation
+
+
+
Approve Users
+
No
+
No
+
No
+
No
+
Yes
+
+
+
Silence Users
+
Yes
+
No
+
Yes
+
Yes
+
Yes
+
+
+
Mark User Media NSFW
+
No
+
No
+
No
+
Yes
+
Yes
+
+
+
+
+## Glossary
+
+Brief descriptions of each feature listed above. I'm keeping them vague as they vary based on software and more broadly across the Fediverse.
+
+### Legends
+
+- **\[Software\]+:** Software plus forks.
+
+### General
+
+- **Authorized Fetch:** A security feature which requires remote instances to identify themselves when requesting information from the local instance. This makes it more difficult for remote instances to access information that they are not permitted to. [Read more](https://docs.joinmastodon.org/admin/config/#authorized_fetch)
+- **Full Text Search:** Allows users to perform more advanced post searches. This may include filters for things as the user that made the post or if the post has an image.
+- **Push Notifications:** Allows users to receive notifications when the website is not open.
+
+### Integration
+
+- **Mastodon API:** The API used by Mastodon. Allows users to use apps/clients that were made for Mastodon.
+- **TensorFlow:** Mainly used by Misskey+ to automatically detect NSFW content.
+
+### Timelines
+
+- **Antennas:** One or more timelines that only show posts that fit certain criteria/filters.
+- **Bubble/Recommended:** A timeline that only shows posts from instances that the admin manually approves.
+- **Social:** Combined Home and Local timeline.
+- **User Lists:** One or more timelines that only show users that are added to the timeline. Note: If you receive a follow request from an account named `@instance.actor@...` it most likely means a user from that instance that doesn't follow you is trying to add you to a list.
+
+### Posts
+
+- **Editing & History:** Allows users to make changes to their posts and to see a history of changes.
+- **Module Player:** Allows users to upload and listen to module or tracker files.
+- **Boost Visibility:** Allows users to change the visibility of their boosts between Public, Unlisted, Followers-only, and Local.
+
+### Markdown
+
+- **Misskey Flavoured Markdown (MFM):** A flavor of Markdown created by Misskey which allows for special formatting such as scale, text color, animation, and more.
+- **MFM fade:** An animation for fading in and out content.
+- **Per Note MFM Animation Toggle:** By default MFM animations are disabled. Posts with MFM animations will have a play/pause button that is initially paused.
+
+### Users
+
+- **Avatar Decorations:** "Stickers" that can be placed and resized on your profile picture.
+- **Cat Mode & Speak as Cat:** Cat Mode adds cat ears to the user's profile picture. Speak as Cat modifies the appearance of posts to be more cat-like. For example "everyone" becomes "everynyan". If Speak as Cat is not a feature of the software then it is included as part of Cat Mode. This feature is taken *very seriously*.
+- **Link Verification:** Verified links will show a checkmark next to them. This can help to verify that a user is who they say they are. [How to verify links](https://docs.joinmastodon.org/user/profile/#verification")
+- **Roles:** Allows admins to control what certain groups of users can and can't do. Displays a role badge on the user profile.
+- **ListenBrainz Status:** Displays what song the user is listening to. Similar to Last.fm.
+- **Feeds:** Automatically generate RSS, Atom, and JSON feeds for public posts from public accounts.
+- **Pages:** Allows users to attach documents to their profile with extra functionality compared to posts.
+- **Post Backfill:** Older posts from remote users will be automatically downloaded to the local instance.
+- **Disable Post Indexing:** Prevent posts from being indexed by search engines.
+- **Import/Export:** Upload and download personal data to move it between accounts.
+- **Post Import:** Allows the user to upload posts that were exported from other platforms. This copies the original post dates and may import attached media.
+- **Migration/Move:** Move followers from an old account to a new account. This does not move followed users or other data, see: Import/Export.
+
+### Moderation
+
+- **Approve Users:** If enabled users will need to provide a reason why they are registering. Moderators can then approve or deny a user's account registration.
+- **Mark User Media NSFW:** Allows moderators to mark some or all of a user's media as Not Safe For Work.
+
+## Special Thanks
+
+### Corrections
+
+- [@Amelia@transfem.social](https://transfem.social/@Amelia")
+- [@blueb@eepy.zone](https://eepy.zone/@blueb")
+- [@frost@wolfdo.gg](https://wolfdo.gg/@frost")
+- [@jeder@miau.jeder.pl](https://miau.jeder.pl/@jeder")
+- [@jegler@heckin.how](https://heckin.how/@jegler")
+- [@lewdum@heckin.how](https://heckin.how/@lewdum")
+- [@Marie@dev.joinsharkey.org](https://dev.joinsharkey.org/@Marie")
+- [@netbat@catodon.social](https://catodon.social/@netbat")
+- [@privateger@plasmatrap.com](https://plasmatrap.com/@privateger")
+- [@vavency@kitsunes.club](https://kitsunes.club/@vavency")
+- [@Weeble@bungle.online](https://bungle.online/@Weeble")
+
+
diff --git a/PancakesWeb/Components/Layout/MainLayout.razor b/PancakesWeb/Components/Layout/MainLayout.razor
index 2eceb99..69c689b 100644
--- a/PancakesWeb/Components/Layout/MainLayout.razor
+++ b/PancakesWeb/Components/Layout/MainLayout.razor
@@ -6,6 +6,7 @@
+
@Body
diff --git a/PancakesWeb/Components/Pages/BlogPost.razor b/PancakesWeb/Components/Pages/BlogPost.razor
new file mode 100644
index 0000000..80b3787
--- /dev/null
+++ b/PancakesWeb/Components/Pages/BlogPost.razor
@@ -0,0 +1,91 @@
+@page "/{Slug}"
+@using Microsoft.AspNetCore.Components.Sections
+
+@if (Post != null)
+{
+
+ @if (Post.HeaderFilename != null)
+ {
+
+
+ @if (Post.HeaderCaption != null)
+ {
+ @Post.HeaderCaption
+ }
+
+ }
+