From 5e4e19da40300631d50bed629cf9675e72f2e1cc Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Mon, 21 Sep 2026 23:30:13 -0400 Subject: [PATCH] Update footer and add no-bullets class for unordered lists --- _layouts/default.html | 6 ++++++ _layouts/note.html | 8 ++++---- assets/css/global.css | 7 ++++++- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index f0c8934..b527100 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -27,6 +27,12 @@

Website text © {{ site.time | date: '%Y' }} Brendan Chen. +
+ Home +
+ Projects +
+ View website source

diff --git a/_layouts/note.html b/_layouts/note.html index c354f9d..0046410 100644 --- a/_layouts/note.html +++ b/_layouts/note.html @@ -11,13 +11,13 @@ layout: default {% if page.backlinks.size > 0 %} {% endif %} diff --git a/assets/css/global.css b/assets/css/global.css index d9c0ee8..6325596 100644 --- a/assets/css/global.css +++ b/assets/css/global.css @@ -52,13 +52,18 @@ a:hover { /* Improve readability for smaller text, especially in long paragraphs */ p, -a, ul, ol { line-height: var(--line-height-base); font-size: var(--font-size-base); } +ul.no-bullets { + list-style: none; + padding-left: 0; + margin: 0; +} + h1, h2, h3,