diff --git a/assets/html/blog.html b/assets/html/blog.html
index 893a216..cf0f2e6 100644
--- a/assets/html/blog.html
+++ b/assets/html/blog.html
@@ -10,7 +10,7 @@
-
{BLOG_TITLE}
+ {BLOG_TITLE} - Violet's Purgatory
diff --git a/blog.js b/blog.js
index 9c182ed..1170630 100644
--- a/blog.js
+++ b/blog.js
@@ -22,6 +22,9 @@ app.use((req, res, next) => {
html = pageUpdater.converter(html, false)
+ html = html.replaceAll("{BLOG_TITLE}", post.title)
+ html = html.replaceAll("{BLOG_DESC}", post.desc)
+
res.send(html)
return
}