diff --git a/page/blog/blogs/Gentoo-linux-is-perfetct-for-me.html b/page/blog/blogs/Gentoo-linux-is-perfect-for-me.html
similarity index 85%
rename from page/blog/blogs/Gentoo-linux-is-perfetct-for-me.html
rename to page/blog/blogs/Gentoo-linux-is-perfect-for-me.html
index 09d979c..72a1d07 100644
--- a/page/blog/blogs/Gentoo-linux-is-perfetct-for-me.html
+++ b/page/blog/blogs/Gentoo-linux-is-perfect-for-me.html
@@ -8,8 +8,8 @@
-
Gentoo linux is perfetct for me
-
back | home | git
+
Gentoo linux is perfect for me
+
10/22/21 09:35:56 EEST | back | home | git
Why?
diff --git a/page/blog/index.html b/page/blog/index.html
index 52469d8..e54ae59 100644
--- a/page/blog/index.html
+++ b/page/blog/index.html
@@ -10,7 +10,7 @@
My blogs
diff --git a/page/blog/index.md b/page/blog/index.md
index 081d7f5..28fe015 100644
--- a/page/blog/index.md
+++ b/page/blog/index.md
@@ -1,2 +1,2 @@
-* [Gentoo linux is perfetct for me](/page/blog/blogs/Gentoo-linux-is-perfetct-for-me.html)
\ No newline at end of file
+* [Gentoo linux is perfect for me](/page/blog/blogs/Gentoo-linux-is-perfect-for-me.html)
\ No newline at end of file
diff --git a/scripts/add_blog b/scripts/add_blog
index 244bc1f..f9f9be6 100755
--- a/scripts/add_blog
+++ b/scripts/add_blog
@@ -1,10 +1,11 @@
#!/usr/bin/env python3
import asyncio
-import os
+import os, subprocess
import markdown
+
async def main() -> int:
open("/tmp/blog.md", "w").close()
@@ -22,9 +23,10 @@ async def main() -> int:
with open("/tmp/blog.md", "r") as f:
blog_content = f.read()
- content = """# %s
+ date = subprocess.check_output(['date', '+%D %T %Z']).decode().rstrip("\n")
+ content = f"""# %s
-[back](..) | [home](/) | [git](//github.com/TruncatedDinosour/website)
+{date} | [back](..) | [home](/) | [git](//github.com/TruncatedDinosour/website)