Replies: 5 comments
-
I like this idea! It shouldn't be too hard to implement. Would you like to try to contribute to tabi with this feature? I'd be happy to provide any guidance necessary. Let me know! :) |
Beta Was this translation helpful? Give feedback.
-
I'd love to contribute to tabi! I’ve been going through the documentation for both Zola and Tera to better understand how the templates are structured, but I’ll likely need some guidance along the way 🙂 I’ve broken the implementation down into two parts (perhaps it might be better to create 2 PR?): Tag Index PageThis seems straightforward. I think modifying the Tag PagesFor individual tag pages, I noticed that the page header is generated using the
Would love to hear your thoughts on which approach makes more sense for tabi! |
Beta Was this translation helpful? Give feedback.
-
Feel free to create the PR for tag index page, then we can discuss tag pages (I'm not yet sure what the ideal solution is here) I'm leaning towards making |
Beta Was this translation helpful? Give feedback.
-
Alright, I hope to move forward with the feed icon in tag index page in the next few days. If I'm not wrong... once we activate the RSS feed on our site, it is also activated for the tags (even if they aren't easily discoverable). So, I'd choose to use |
Beta Was this translation helpful? Give feedback.
-
While working on the implementation of the feed icons in the tag index page, I encountered the following scenario: Some tags may be assigned to pages that don't have a A consequence of this behaviour is that clicking the feed icon for such tags results in a 404 page, since the corresponding The ideal approach might be to handle this scenario similarly to the Lines 72 to 80 in f25dfe3 To handle this scenario, I see two possible approaches:
What do you think about these approaches? Any other ideas? P.S. This same scenario also applies to individual tag pages. |
Beta Was this translation helpful? Give feedback.
-
Currently, tabi theme generates RSS feeds for individual tags (e.g., this feed), but these feeds aren't easily discoverable by visitors. The only visible RSS related icon is located in the footer.
Possible approach
Tag pages
When selecting a tag, all associated entries are listed under a title displaying the tag name. The suggestion is to add an RSS feed icon next to the tag name, making it clearer that a dedicated feed is available, similar to how it is implemented in the PaperMod theme for Zola. The placement (left or right of the title) could be a design choice or configurable as a preference.
Tag index page
If a site enables tag listings, the RSS icon could also be displayed next to each tag in the index, alongside the number of associated entries. Once the RSS feed subscription is made easily accessible on individual tag pages, this would be an additional option. It would further enhance usability by allowing readers to subscribe to the feed of their preferred tag directly from the tag index page.
Beta Was this translation helpful? Give feedback.
All reactions