diff --git a/_layouts/post.html b/_layouts/post.html index a97ffd7..1801648 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,6 +2,12 @@ layout: default --- -Back + + +
+ All posts + • +

{{ page.date | date: "%Y.%m.%d" }}

+
{{ content }} diff --git a/_posts/2025-07-18-hello-world.md b/_posts/2025-07-18-hello-world.md index 8bfebe4..9cba12e 100644 --- a/_posts/2025-07-18-hello-world.md +++ b/_posts/2025-07-18-hello-world.md @@ -1,6 +1,7 @@ --- title: "Hello World" layout: post +date: 2025.07.18 --- # Welcome diff --git a/assets/blog.css b/assets/blog.css new file mode 100644 index 0000000..9973bc9 --- /dev/null +++ b/assets/blog.css @@ -0,0 +1,10 @@ +.infobar { + display: flex; + flex-direction: row; + margin-bottom: 1rem; + gap: 8px; +} + +.infobar p { + margin: 0; +} diff --git a/assets/global.css b/assets/global.css index 0a004d7..84309e9 100644 --- a/assets/global.css +++ b/assets/global.css @@ -30,6 +30,7 @@ footer { width: 100%; padding-bottom: 64px; + padding-top: 64px; color: dimgray; } diff --git a/journal.html b/blog.html similarity index 100% rename from journal.html rename to blog.html