diff --git a/Makefile b/Makefile
index beb41af..95f2ac1 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ TMPL = $(SRCDIR)/tmpl.html
URI = "https://bear.oops.wtf"
.PHONY: all
-all: html css $(DISTDIR)/robots.txt $(DISTDIR)/sitemap.xml
+all: html css $(DISTDIR)/robots.txt $(DISTDIR)/sitemap.xml static
# Build
@@ -59,7 +59,10 @@ clean:
rm -rfv $(CSSDIR)
.PHONY: help
-
help:
@egrep -h '\s##\s' $(MAKEFILE_LIST) | \
- awk 'BEGIN {FS = ":.*?## "}; {printf "\033[34m%-15s\033[0m %s\n", $$1, $$2}'
\ No newline at end of file
+ awk 'BEGIN {FS = ":.*?## "}; {printf "\033[34m%-15s\033[0m %s\n", $$1, $$2}'
+
+.PHONY: static
+static:
+ @install -v -D -t dist/ static/*
\ No newline at end of file
diff --git a/src/404.md b/src/404.md
new file mode 100644
index 0000000..12a49f9
--- /dev/null
+++ b/src/404.md
@@ -0,0 +1,10 @@
+---
+title: 404 - Not Found
+author: BearFM
+date: January 25, 2024
+modified: January 25, 2024
+---
+
+# 404: Not Found
+
+[](xertun.webp)
\ No newline at end of file
diff --git a/src/index.md b/src/index.md
index c27bf06..e023549 100644
--- a/src/index.md
+++ b/src/index.md
@@ -2,6 +2,7 @@
title: bear.oops.wtf
author: BearFM
date: January 6, 2024
+modified: January 25, 2024
---
-sup
\ No newline at end of file
+Hello, I'm Bear.
\ No newline at end of file
diff --git a/src/scss/style.scss b/src/scss/style.scss
index a23515f..e735c12 100644
--- a/src/scss/style.scss
+++ b/src/scss/style.scss
@@ -34,6 +34,8 @@ $gruvbox-orange: #d65d0e;
body {
font-family: Arial, sans-serif;
+ font-size: 1.5em;
+
margin: 2em;
line-height: 1.6;
@@ -48,6 +50,12 @@ body {
color: $gruvbox-fg;
}
+.meta {
+ font-size: 0.75em;
+ line-height: 1;
+ color: $gruvbox-dark2;
+}
+
header {
background-color: $gruvbox-dark1;
color: $gruvbox-fg;
diff --git a/src/tmpl.html b/src/tmpl.html
index 4fb2e44..9b2eb11 100644
--- a/src/tmpl.html
+++ b/src/tmpl.html
@@ -10,10 +10,12 @@