From cf48c16bcae06f38bc781af8f142c1b9cd6713ac Mon Sep 17 00:00:00 2001 From: Jim Shepich III Date: Sun, 1 Feb 2026 17:27:43 -0500 Subject: [PATCH] Fixed RSS icon --- jimsite/blog.py | 6 +----- site/assets/css/theme.css | 4 ++++ site/templates/components/rss_icon.html | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/jimsite/blog.py b/jimsite/blog.py index 2e4403e..a1a8955 100644 --- a/jimsite/blog.py +++ b/jimsite/blog.py @@ -62,7 +62,7 @@ def build_tag_index(index: dict[str, Article]) -> dict[str, list[str]]: tag_index[tag] = (tag_index.get(tag,[])) + [article] - +# TODO: create a tag inventory page, as well as individual browse-by-tag pages. # def build_tag_inventory( # site: SiteConfig, # index: dict[str, tuple[str, str]], @@ -72,10 +72,6 @@ def build_tag_index(index: dict[str, Article]) -> dict[str, list[str]]: # tag_ - - - -# TODO: Finish def build_rss_feed(site: SiteConfig, index: dict[str, Article]): feed = rfeed.Feed( title = site.title, diff --git a/site/assets/css/theme.css b/site/assets/css/theme.css index 21a1de5..fed556e 100644 --- a/site/assets/css/theme.css +++ b/site/assets/css/theme.css @@ -179,4 +179,8 @@ article hr{ img.rss-icon{ width: 1rem; vertical-align: middle; +} + +span img.rss-icon{ + float: right; } \ No newline at end of file diff --git a/site/templates/components/rss_icon.html b/site/templates/components/rss_icon.html index 7d4c72b..9368675 100644 --- a/site/templates/components/rss_icon.html +++ b/site/templates/components/rss_icon.html @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file