From 6eb73a3e2581c6c1bdd4534438c5dac88cb59ad4 Mon Sep 17 00:00:00 2001 From: Jakob Meier Date: Sun, 1 Sep 2024 14:43:07 +0200 Subject: [PATCH] Show logo on about screen --- content/aboutme.md | 3 +++ static/about.css | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 static/about.css diff --git a/content/aboutme.md b/content/aboutme.md index 7d56b99..a5232cb 100644 --- a/content/aboutme.md +++ b/content/aboutme.md @@ -1,9 +1,12 @@ --- title: About Me +customCss: "/about.css" --- # This is me +![A crocheted tiny flowerpot with eyes. The flower is coloured in the colors of the non-binary flag](/logo.png) + Hi, \ I'm **Jakob**. \ I love writing software using **rust** and **hare**. \ diff --git a/static/about.css b/static/about.css new file mode 100644 index 0000000..9c32d14 --- /dev/null +++ b/static/about.css @@ -0,0 +1,3 @@ +img { + max-width: 24rem !important; +} -- 2.38.5