From fad87c5cc042ea293b3d5cd7a139d124dce1cbd4 Mon Sep 17 00:00:00 2001 From: tdro Date: Sat, 30 Dec 2023 16:39:52 -0500 Subject: config: Use same icon set on navigation Normalize SVG XML formatting --- Makefile | 16 ++++-- config.json | 12 ++-- config.toml | 12 ++-- config.yaml | 12 ++-- static/icons/feather/alert-circle.svg | 37 +++++++----- static/icons/feather/arrow-down-circle.svg | 34 ++++++----- static/icons/feather/arrow-left.svg | 29 ++++++---- static/icons/feather/arrow-right.svg | 29 ++++++---- static/icons/feather/arrow-up.svg | 29 ++++++---- static/icons/feather/at-sign.svg | 28 +++++---- static/icons/feather/calendar.svg | 46 ++++++++++----- static/icons/feather/circle.svg | 13 ----- static/icons/feather/clock.svg | 28 +++++---- static/icons/feather/edit.svg | 26 +++++---- static/icons/feather/external-link.svg | 32 ++++++----- static/icons/feather/eye-off.svg | 31 +++++----- static/icons/feather/eye.svg | 28 +++++---- static/icons/feather/file-text.svg | 41 ++++++++----- static/icons/feather/git-commit.svg | 15 ----- static/icons/feather/globe.svg | 36 +++++++----- static/icons/feather/heart.svg | 25 ++++---- static/icons/feather/home.svg | 14 ----- static/icons/feather/link.svg | 26 +++++---- static/icons/feather/map-pin.svg | 28 +++++---- static/icons/feather/refresh-cw.svg | 31 +++++----- static/icons/feather/rss.svg | 15 ----- static/icons/feather/search.svg | 31 ++++++---- static/icons/feather/trash-2.svg | 40 +++++++------ static/icons/feather/user.svg | 28 +++++---- static/icons/feather/users.svg | 16 ------ static/icons/tabler/archive.svg | 41 +++++++------ static/icons/tabler/book-2.svg | 41 ++++++++----- static/icons/tabler/circle.svg | 22 +++++++ static/icons/tabler/clock.svg | 37 +++++++----- static/icons/tabler/code.svg | 41 ++++++++----- static/icons/tabler/git-fork.svg | 34 +++++++++++ static/icons/tabler/home.svg | 28 +++++++++ static/icons/tabler/notes.svg | 45 +++++++++------ static/icons/tabler/pinned.svg | 41 ++++++++----- static/icons/tabler/robot.svg | 67 ++++++++++++++-------- static/icons/tabler/rss.svg | 28 +++++++++ static/icons/tabler/settings.svg | 37 +++++++----- static/icons/tabler/square-letter-m.svg | 37 +++++++----- static/icons/tabler/tag.svg | 25 ++++++++ static/icons/tabler/tags.svg | 19 ------ static/icons/tabler/users.svg | 31 ++++++++++ .../layouts/_default/section.following.html | 2 +- themes/default/layouts/partials/author-card.html | 2 +- themes/default/layouts/partials/meta-via.html | 2 +- 49 files changed, 831 insertions(+), 537 deletions(-) delete mode 100644 static/icons/feather/circle.svg delete mode 100644 static/icons/feather/git-commit.svg delete mode 100644 static/icons/feather/home.svg delete mode 100644 static/icons/feather/rss.svg delete mode 100644 static/icons/feather/users.svg create mode 100644 static/icons/tabler/circle.svg create mode 100644 static/icons/tabler/git-fork.svg create mode 100644 static/icons/tabler/home.svg create mode 100644 static/icons/tabler/rss.svg create mode 100644 static/icons/tabler/tag.svg delete mode 100644 static/icons/tabler/tags.svg create mode 100644 static/icons/tabler/users.svg diff --git a/Makefile b/Makefile index caf2dee..46c86e2 100644 --- a/Makefile +++ b/Makefile @@ -39,36 +39,40 @@ build-icons: # Build icons curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/arrow-up.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/at-sign.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/calendar.svg --output-dir static/icons/feather - curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/circle.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/clock.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/edit.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/external-link.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/eye-off.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/eye.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/file-text.svg --output-dir static/icons/feather - curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/git-commit.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/globe.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/heart.svg --output-dir static/icons/feather - curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/home.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/link.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/map-pin.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/refresh-cw.svg --output-dir static/icons/feather - curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/rss.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/search.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/trash-2.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/user.svg --output-dir static/icons/feather - curl --silent --remote-name https://raw.githubusercontent.com/feathericons/feather/master/icons/users.svg --output-dir static/icons/feather curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/LICENSE --output-dir static/icons/tabler curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/archive.svg --output-dir static/icons/tabler curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/book-2.svg --output-dir static/icons/tabler + curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/circle.svg --output-dir static/icons/tabler curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/clock.svg --output-dir static/icons/tabler curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/code.svg --output-dir static/icons/tabler + curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/git-fork.svg --output-dir static/icons/tabler + curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/home.svg --output-dir static/icons/tabler curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/notes.svg --output-dir static/icons/tabler curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/pinned.svg --output-dir static/icons/tabler curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/robot.svg --output-dir static/icons/tabler + curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/rss.svg --output-dir static/icons/tabler curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/settings.svg --output-dir static/icons/tabler curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/square-letter-m.svg --output-dir static/icons/tabler - curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/tags.svg --output-dir static/icons/tabler + curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/tag.svg --output-dir static/icons/tabler + curl --silent --remote-name https://raw.githubusercontent.com/tabler/tabler-icons/master/icons/users.svg --output-dir static/icons/tabler + for icon in static/icons/*/*.svg; do \ + xmllint --pretty 2 $$icon --output $$icon; \ + sed --in-place '1d' $$icon; \ + done git add -f static/icons test: # Test everything diff --git a/config.json b/config.json index f292814..b47f23d 100644 --- a/config.json +++ b/config.json @@ -33,13 +33,13 @@ { "name": "Home", "url": "/", - "identifier": "feather/home", + "identifier": "tabler/home", "weight": 1 }, { "name": "Tags", "url": "/tags/", - "identifier": "tabler/tags", + "identifier": "tabler/tag", "weight": 2, "icon": "home" }, @@ -52,7 +52,7 @@ { "name": "Authors", "url": "/authors/", - "identifier": "feather/users", + "identifier": "tabler/users", "weight": 4 }, { @@ -64,19 +64,19 @@ { "name": "Sources", "url": "/sources/", - "identifier": "feather/git-commit", + "identifier": "tabler/git-fork", "weight": 6 }, { "name": "RSS Feed", "url": "/rss.xml", - "identifier": "feather/rss", + "identifier": "tabler/rss", "weight": 7 }, { "name": "JSON Feed", "url": "/index.json", - "identifier": "feather/circle", + "identifier": "tabler/circle", "weight": 8 } ] diff --git a/config.toml b/config.toml index bdc6d13..0af2921 100644 --- a/config.toml +++ b/config.toml @@ -27,13 +27,13 @@ enableRobotsTXT = true [[menu.main]] name = "Home" url = "/" - identifier = "feather/home" + identifier = "tabler/home" weight = 1 [[menu.main]] name = "Tags" url = "/tags/" - identifier = "tabler/tags" + identifier = "tabler/tag" weight = 2 icon = "home" @@ -46,7 +46,7 @@ enableRobotsTXT = true [[menu.main]] name = "Authors" url = "/authors/" - identifier = "feather/users" + identifier = "tabler/users" weight = 4 [[menu.main]] @@ -58,19 +58,19 @@ enableRobotsTXT = true [[menu.main]] name = "Sources" url = "/sources/" - identifier = "feather/git-commit" + identifier = "tabler/git-fork" weight = 6 [[menu.main]] name = "RSS Feed" url = "/rss.xml" - identifier = "feather/rss" + identifier = "tabler/rss" weight = 7 [[menu.main]] name = "JSON Feed" url = "/index.json" - identifier = "feather/circle" + identifier = "tabler/circle" weight = 8 [params] diff --git a/config.yaml b/config.yaml index 707f0bc..023090b 100644 --- a/config.yaml +++ b/config.yaml @@ -33,11 +33,11 @@ menu: main: - name: Home url: / - identifier: feather/home + identifier: tabler/home weight: 1 - name: Tags url: /tags/ - identifier: tabler/tags + identifier: tabler/tag weight: 2 icon: home - name: Archives @@ -46,7 +46,7 @@ menu: weight: 3 - name: Authors url: /authors/ - identifier: feather/users + identifier: tabler/users weight: 4 - name: Settings url: /settings/ @@ -54,15 +54,15 @@ menu: weight: 5 - name: Sources url: /sources/ - identifier: feather/git-commit + identifier: tabler/git-fork weight: 6 - name: RSS Feed url: /rss.xml - identifier: feather/rss + identifier: tabler/rss weight: 7 - name: JSON Feed url: /index.json - identifier: feather/circle + identifier: tabler/circle weight: 8 params: diff --git a/static/icons/feather/alert-circle.svg b/static/icons/feather/alert-circle.svg index 57fbe36..7279c6b 100644 --- a/static/icons/feather/alert-circle.svg +++ b/static/icons/feather/alert-circle.svg @@ -1,15 +1,26 @@ - - - - diff --git a/static/icons/feather/arrow-down-circle.svg b/static/icons/feather/arrow-down-circle.svg index eb9f1a0..b35b28e 100644 --- a/static/icons/feather/arrow-down-circle.svg +++ b/static/icons/feather/arrow-down-circle.svg @@ -1,15 +1,23 @@ - - - - diff --git a/static/icons/feather/arrow-left.svg b/static/icons/feather/arrow-left.svg index ce06f88..483e657 100644 --- a/static/icons/feather/arrow-left.svg +++ b/static/icons/feather/arrow-left.svg @@ -1,14 +1,19 @@ - - - diff --git a/static/icons/feather/arrow-right.svg b/static/icons/feather/arrow-right.svg index 5c5494f..890f79e 100644 --- a/static/icons/feather/arrow-right.svg +++ b/static/icons/feather/arrow-right.svg @@ -1,14 +1,19 @@ - - - diff --git a/static/icons/feather/arrow-up.svg b/static/icons/feather/arrow-up.svg index f1ff621..19a47b7 100644 --- a/static/icons/feather/arrow-up.svg +++ b/static/icons/feather/arrow-up.svg @@ -1,14 +1,19 @@ - - - diff --git a/static/icons/feather/at-sign.svg b/static/icons/feather/at-sign.svg index 0b7fdfb..7fda03c 100644 --- a/static/icons/feather/at-sign.svg +++ b/static/icons/feather/at-sign.svg @@ -1,14 +1,18 @@ - - - diff --git a/static/icons/feather/calendar.svg b/static/icons/feather/calendar.svg index c002b85..4a4601e 100644 --- a/static/icons/feather/calendar.svg +++ b/static/icons/feather/calendar.svg @@ -1,16 +1,34 @@ - - - - - diff --git a/static/icons/feather/circle.svg b/static/icons/feather/circle.svg deleted file mode 100644 index 1717bb4..0000000 --- a/static/icons/feather/circle.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - diff --git a/static/icons/feather/clock.svg b/static/icons/feather/clock.svg index 8ce25b2..840143c 100644 --- a/static/icons/feather/clock.svg +++ b/static/icons/feather/clock.svg @@ -1,14 +1,18 @@ - - - diff --git a/static/icons/feather/edit.svg b/static/icons/feather/edit.svg index 9294758..d8c52bd 100644 --- a/static/icons/feather/edit.svg +++ b/static/icons/feather/edit.svg @@ -1,14 +1,16 @@ - - - diff --git a/static/icons/feather/external-link.svg b/static/icons/feather/external-link.svg index 537b731..6e82d00 100644 --- a/static/icons/feather/external-link.svg +++ b/static/icons/feather/external-link.svg @@ -1,15 +1,21 @@ - - - - diff --git a/static/icons/feather/eye-off.svg b/static/icons/feather/eye-off.svg index e7552f4..fc7cd2b 100644 --- a/static/icons/feather/eye-off.svg +++ b/static/icons/feather/eye-off.svg @@ -1,16 +1,19 @@ - - - diff --git a/static/icons/feather/eye.svg b/static/icons/feather/eye.svg index edaab72..16af897 100644 --- a/static/icons/feather/eye.svg +++ b/static/icons/feather/eye.svg @@ -1,14 +1,18 @@ - - - diff --git a/static/icons/feather/file-text.svg b/static/icons/feather/file-text.svg index 6cba58c..52c6a2e 100644 --- a/static/icons/feather/file-text.svg +++ b/static/icons/feather/file-text.svg @@ -1,17 +1,28 @@ - - - - - - diff --git a/static/icons/feather/git-commit.svg b/static/icons/feather/git-commit.svg deleted file mode 100644 index 1574fbd..0000000 --- a/static/icons/feather/git-commit.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - diff --git a/static/icons/feather/globe.svg b/static/icons/feather/globe.svg index 7617e0c..0ada01a 100644 --- a/static/icons/feather/globe.svg +++ b/static/icons/feather/globe.svg @@ -1,17 +1,23 @@ - - - - diff --git a/static/icons/feather/heart.svg b/static/icons/feather/heart.svg index 5f083d2..850bd6f 100644 --- a/static/icons/feather/heart.svg +++ b/static/icons/feather/heart.svg @@ -1,15 +1,14 @@ - - diff --git a/static/icons/feather/home.svg b/static/icons/feather/home.svg deleted file mode 100644 index 9cd8f76..0000000 --- a/static/icons/feather/home.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - diff --git a/static/icons/feather/link.svg b/static/icons/feather/link.svg index 645e746..f29769b 100644 --- a/static/icons/feather/link.svg +++ b/static/icons/feather/link.svg @@ -1,14 +1,16 @@ - - - diff --git a/static/icons/feather/map-pin.svg b/static/icons/feather/map-pin.svg index 8f5f320..42cd85e 100644 --- a/static/icons/feather/map-pin.svg +++ b/static/icons/feather/map-pin.svg @@ -1,14 +1,18 @@ - - - diff --git a/static/icons/feather/refresh-cw.svg b/static/icons/feather/refresh-cw.svg index c2cb05d..b303e7d 100644 --- a/static/icons/feather/refresh-cw.svg +++ b/static/icons/feather/refresh-cw.svg @@ -1,17 +1,18 @@ - - - - diff --git a/static/icons/feather/rss.svg b/static/icons/feather/rss.svg deleted file mode 100644 index 3b87036..0000000 --- a/static/icons/feather/rss.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - diff --git a/static/icons/feather/search.svg b/static/icons/feather/search.svg index 89a8636..93f75d7 100644 --- a/static/icons/feather/search.svg +++ b/static/icons/feather/search.svg @@ -1,14 +1,21 @@ - - - diff --git a/static/icons/feather/trash-2.svg b/static/icons/feather/trash-2.svg index 237872e..ca89ec0 100644 --- a/static/icons/feather/trash-2.svg +++ b/static/icons/feather/trash-2.svg @@ -1,18 +1,26 @@ - - - - - diff --git a/static/icons/feather/user.svg b/static/icons/feather/user.svg index f075a65..47667ba 100644 --- a/static/icons/feather/user.svg +++ b/static/icons/feather/user.svg @@ -1,14 +1,18 @@ - - - diff --git a/static/icons/feather/users.svg b/static/icons/feather/users.svg deleted file mode 100644 index eb87d02..0000000 --- a/static/icons/feather/users.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - diff --git a/static/icons/tabler/archive.svg b/static/icons/tabler/archive.svg index 8772d7f..688c314 100644 --- a/static/icons/tabler/archive.svg +++ b/static/icons/tabler/archive.svg @@ -1,19 +1,28 @@ - + xmlns="http://www.w3.org/2000/svg" + class="icon icon-tabler icon-tabler-archive" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + > + + + - - - + diff --git a/static/icons/tabler/book-2.svg b/static/icons/tabler/book-2.svg index 695784f..8611c4c 100644 --- a/static/icons/tabler/book-2.svg +++ b/static/icons/tabler/book-2.svg @@ -1,17 +1,28 @@ + + + + + - - - - - diff --git a/static/icons/tabler/circle.svg b/static/icons/tabler/circle.svg new file mode 100644 index 0000000..6362933 --- /dev/null +++ b/static/icons/tabler/circle.svg @@ -0,0 +1,22 @@ + + + + diff --git a/static/icons/tabler/clock.svg b/static/icons/tabler/clock.svg index d8d9af3..3f7acd5 100644 --- a/static/icons/tabler/clock.svg +++ b/static/icons/tabler/clock.svg @@ -1,16 +1,25 @@ + + + + - - - - diff --git a/static/icons/tabler/code.svg b/static/icons/tabler/code.svg index df80bc2..528fa15 100644 --- a/static/icons/tabler/code.svg +++ b/static/icons/tabler/code.svg @@ -1,17 +1,28 @@ + + + + + - - - - - diff --git a/static/icons/tabler/git-fork.svg b/static/icons/tabler/git-fork.svg new file mode 100644 index 0000000..425832b --- /dev/null +++ b/static/icons/tabler/git-fork.svg @@ -0,0 +1,34 @@ + + + + + + + + diff --git a/static/icons/tabler/home.svg b/static/icons/tabler/home.svg new file mode 100644 index 0000000..adc5775 --- /dev/null +++ b/static/icons/tabler/home.svg @@ -0,0 +1,28 @@ + + + + + + diff --git a/static/icons/tabler/notes.svg b/static/icons/tabler/notes.svg index e6947da..b1ea76d 100644 --- a/static/icons/tabler/notes.svg +++ b/static/icons/tabler/notes.svg @@ -1,20 +1,31 @@ - + xmlns="http://www.w3.org/2000/svg" + class="icon icon-tabler icon-tabler-notes" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + > + + - - - - + + + diff --git a/static/icons/tabler/pinned.svg b/static/icons/tabler/pinned.svg index 4a232b6..b0332b5 100644 --- a/static/icons/tabler/pinned.svg +++ b/static/icons/tabler/pinned.svg @@ -1,17 +1,28 @@ + + + + + - - - - - diff --git a/static/icons/tabler/robot.svg b/static/icons/tabler/robot.svg index 64f2658..c9595a1 100644 --- a/static/icons/tabler/robot.svg +++ b/static/icons/tabler/robot.svg @@ -1,25 +1,46 @@ + + + + + + + + + + + - - - - - - - - - - - diff --git a/static/icons/tabler/rss.svg b/static/icons/tabler/rss.svg new file mode 100644 index 0000000..f85d6aa --- /dev/null +++ b/static/icons/tabler/rss.svg @@ -0,0 +1,28 @@ + + + + + + diff --git a/static/icons/tabler/settings.svg b/static/icons/tabler/settings.svg index caa2e55..0070dba 100644 --- a/static/icons/tabler/settings.svg +++ b/static/icons/tabler/settings.svg @@ -1,18 +1,25 @@ - + xmlns="http://www.w3.org/2000/svg" + class="icon icon-tabler icon-tabler-settings" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + > + - - + + diff --git a/static/icons/tabler/square-letter-m.svg b/static/icons/tabler/square-letter-m.svg index f3670dd..0a968b5 100644 --- a/static/icons/tabler/square-letter-m.svg +++ b/static/icons/tabler/square-letter-m.svg @@ -1,18 +1,25 @@ - + xmlns="http://www.w3.org/2000/svg" + class="icon icon-tabler icon-tabler-square-letter-m" + width="24" + height="24" + viewBox="0 0 24 24" + stroke-width="2" + stroke="currentColor" + fill="none" + stroke-linecap="round" + stroke-linejoin="round" + > + - - + + diff --git a/static/icons/tabler/tag.svg b/static/icons/tabler/tag.svg new file mode 100644 index 0000000..e837c12 --- /dev/null +++ b/static/icons/tabler/tag.svg @@ -0,0 +1,25 @@ + + + + + diff --git a/static/icons/tabler/tags.svg b/static/icons/tabler/tags.svg deleted file mode 100644 index b2f166c..0000000 --- a/static/icons/tabler/tags.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - diff --git a/static/icons/tabler/users.svg b/static/icons/tabler/users.svg new file mode 100644 index 0000000..531637f --- /dev/null +++ b/static/icons/tabler/users.svg @@ -0,0 +1,31 @@ + + + + + + + diff --git a/themes/default/layouts/_default/section.following.html b/themes/default/layouts/_default/section.following.html index c3bfc7b..f002d43 100644 --- a/themes/default/layouts/_default/section.following.html +++ b/themes/default/layouts/_default/section.following.html @@ -65,7 +65,7 @@ - {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/rss.svg")) }} + {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/tabler/rss.svg")) }}
Follow
diff --git a/themes/default/layouts/partials/author-card.html b/themes/default/layouts/partials/author-card.html index a370eaf..6b4b91b 100644 --- a/themes/default/layouts/partials/author-card.html +++ b/themes/default/layouts/partials/author-card.html @@ -75,7 +75,7 @@

{{ .Data.description | markdownify | plainify | htmlUnescape | truncate 60 "..." }}

- {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/rss.svg")) }} + {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/tabler/rss.svg")) }}
Follow
diff --git a/themes/default/layouts/partials/meta-via.html b/themes/default/layouts/partials/meta-via.html index 3c8827f..3f5476c 100644 --- a/themes/default/layouts/partials/meta-via.html +++ b/themes/default/layouts/partials/meta-via.html @@ -2,7 +2,7 @@ {{- if .Params.feed -}} - {{- safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/rss.svg")) -}} + {{- safeHTML (readFile (print (partial "function-paths.html").static "/icons/tabler/rss.svg")) -}}