From 87c97a5b6bcba3a43b82e3540728cec4ca5de347 Mon Sep 17 00:00:00 2001 From: Iulian Onofrei <5748627+revolter@users.noreply.github.com> Date: Sun, 29 Sep 2024 12:26:55 +0300 Subject: [PATCH 1/2] Refactor: Replaced diverged copy of 3rd party file with custom CSS --- _includes/footer.html | 24 ------------------------ _sass/minima/custom-styles.scss | 4 ++++ 2 files changed, 4 insertions(+), 24 deletions(-) delete mode 100644 _includes/footer.html diff --git a/_includes/footer.html b/_includes/footer.html deleted file mode 100644 index 9c230ab..0000000 --- a/_includes/footer.html +++ /dev/null @@ -1,24 +0,0 @@ - diff --git a/_sass/minima/custom-styles.scss b/_sass/minima/custom-styles.scss index 79b3040..de47c76 100644 --- a/_sass/minima/custom-styles.scss +++ b/_sass/minima/custom-styles.scss @@ -149,4 +149,8 @@ body { } } } + + .feed-subscribe, .footer-col > p { + display: none; + } } From e90a17b2079fca8c9f898d4c69643650b4974a17 Mon Sep 17 00:00:00 2001 From: Iulian Onofrei <5748627+revolter@users.noreply.github.com> Date: Sun, 29 Sep 2024 12:28:17 +0300 Subject: [PATCH 2/2] Added website author information --- _config.yml | 3 +++ _sass/minima/custom-styles.scss | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index f28c337..5a92ba5 100644 --- a/_config.yml +++ b/_config.yml @@ -2,6 +2,9 @@ title: Notepad Tab tagline: A simple, secure and private note taking tool description: Write down anything and have it automatically persisted in the address bar and in the browser's history. Easily back up or share any note by simply copy and pasting the URL. url: https://notepadtab.com +author: + name: Iulian Onofrei + url: https://iulianonofrei.com # Disabled due to https://github.com/rubygems/rubygems/issues/7652 # theme: minima diff --git a/_sass/minima/custom-styles.scss b/_sass/minima/custom-styles.scss index de47c76..f98a5b7 100644 --- a/_sass/minima/custom-styles.scss +++ b/_sass/minima/custom-styles.scss @@ -150,7 +150,7 @@ body { } } - .feed-subscribe, .footer-col > p { + .feed-subscribe, .contact-list, .footer-col > p { display: none; } }