Update post and footer layout

This commit is contained in:
2025-07-18 23:43:15 -04:00
parent 5684b8250c
commit 61a741119b
5 changed files with 19 additions and 1 deletions

View File

@@ -2,6 +2,12 @@
layout: default layout: default
--- ---
<a href="/journal">Back</a> <link rel="stylesheet" href="/assets/blog.css">
<div class="infobar">
<a href="/blog">All posts</a>
<p>{{ page.date | date: "%Y.%m.%d" }}</p>
</div>
{{ content }} {{ content }}

View File

@@ -1,6 +1,7 @@
--- ---
title: "Hello World" title: "Hello World"
layout: post layout: post
date: 2025.07.18
--- ---
# Welcome # Welcome

10
assets/blog.css Normal file
View File

@@ -0,0 +1,10 @@
.infobar {
display: flex;
flex-direction: row;
margin-bottom: 1rem;
gap: 8px;
}
.infobar p {
margin: 0;
}

View File

@@ -30,6 +30,7 @@ footer {
width: 100%; width: 100%;
padding-bottom: 64px; padding-bottom: 64px;
padding-top: 64px;
color: dimgray; color: dimgray;
} }