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