{"id":13439357,"url":"https://github.com/georgemandis/jekyll-rss-feeds","last_synced_at":"2025-12-16T14:30:56.801Z","repository":{"id":137478807,"uuid":"2000896","full_name":"georgemandis/jekyll-rss-feeds","owner":"georgemandis","description":"Templates for rendering RSS feeds for your Jekyll blog","archived":false,"fork":false,"pushed_at":"2021-09-19T19:22:59.000Z","size":32,"stargazers_count":649,"open_issues_count":0,"forks_count":83,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-03-28T13:10:05.275Z","etag":null,"topics":["feed","feed-templates","jekyll","jekyll-blog","liquid","rendering-rss-feeds","xml"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/georgemandis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"georgemandis","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2011-07-05T14:39:39.000Z","updated_at":"2025-01-10T20:33:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"c1789160-abc8-43bd-b677-df0f869c61b0","html_url":"https://github.com/georgemandis/jekyll-rss-feeds","commit_stats":null,"previous_names":["snaptortoise/jekyll-rss-feeds"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgemandis%2Fjekyll-rss-feeds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgemandis%2Fjekyll-rss-feeds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgemandis%2Fjekyll-rss-feeds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgemandis%2Fjekyll-rss-feeds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/georgemandis","download_url":"https://codeload.github.com/georgemandis/jekyll-rss-feeds/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247190252,"owners_count":20898702,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["feed","feed-templates","jekyll","jekyll-blog","liquid","rendering-rss-feeds","xml"],"created_at":"2024-07-31T03:01:13.239Z","updated_at":"2025-12-16T14:30:51.474Z","avatar_url":"https://github.com/georgemandis.png","language":null,"funding_links":["https://github.com/sponsors/georgemandis"],"categories":["HarmonyOS","Others"],"sub_categories":["Windows Manager"],"readme":"Jekyll RSS Feed Templates\n=========================\n\n**NOTE:** If you're a fan of this project you should checkout the sister project: [jekyll-json-feeds](https://github.com/snaptortoise/jekyll-json-feeds).\n\nA few Liquid templates to use for rendering RSS feeds for your Jekyll blog.  Featuring four kinds of feeds:\n\n- **feed.xml** \u0026mdash; Renders the 10 most recent posts.\n- **feed.category.xml** \u0026mdash; Only renders posts for a specific category. This example renders posts for a \"miscellaneous\" category.\n- **feed.links.xml** \u0026mdash; Only contains posts that link to external websites noted by a \u003ccode\u003elink\u003c/code\u003e variable in the [YAML Front Matter](https://github.com/mojombo/jekyll/wiki/YAML-Front-Matter).  Not a common Jekyll convention, but a good way to generating a linked list.\n- **feed.articles.xml** \u0026mdash; Only showing articles that don't link to external sites; The opposite of \u003ccode\u003efeed.links.xml\u003c/code\u003e\n\nHow to use\n----------\n- Update \\_config.yml as noted below, or manually replace the variables.\n- Copy one of the xml (ie, \u003ccode\u003efeed.xml\u003c/code\u003e) files to the root directory of your Jekyll blog.\n- Run \u003ccode\u003ejekyll\u003c/code\u003e.\n\nIn your generated \u003ccode\u003e\\_site\u003c/code\u003e folder you should find a properly formatted feed at \u003ccode\u003efeed.xml\u003c/code\u003e.\n\nCustomizing \\_config.yml\n------\nThese templates rely on a customized version of \u003ccode\u003e\\_config.yml\u003c/code\u003e.  The following lines have been added:\n\n\tname: Your Blog's Name\n\tdescription: A description for your blog\n\turl: http://your-blog-url.example.com\n\tfeed_items: 10\n\tfeed_update_period: daily\n\tfeed_update_frequency: 1\n\nThis makes it easy to reference the title, description and URL for your site in the feed templates using \u003ccode\u003e{{ site.name }}\u003c/code\u003e, \u003ccode\u003e{{ site.description }}\u003c/code\u003e and \u003ccode\u003e{{ site.url }}\u003c/code\u003e.  Even if you're not using these feed templates, you might find these variables useful when you're designing your layouts.\n\nThe `feed_*` items shown above are the default. You can safely omit them.\n\nMiscellany\n-----------\n- **Note on YAML Front Matter block**: The xml files contain an empty [YAML Front Matter](https://github.com/mojombo/jekyll/wiki/YAML-Front-Matter) block. This is necessary because Jekyll will not process a page with Liquid unless there is a YAML block at the top of the file. \n\n- **Note on layouts**: Previously, this block contained the line \u003ccode\u003elayout: none\u003c/code\u003e but that was found to cause a separate issue for some: https://github.com/snaptortoise/jekyll-rss-feeds/commit/209b83b504fde14722491ea5d9753189566c8598. However, if you've specified a *default* layout in your `_config.yml` file then you **will** most likely want to specify `layout: none` for your RSS feeds. Otherwise they will render in the default layout which is likely to be an HTML page. See this issue for reference: [https://github.com/snaptortoise/jekyll-rss-feeds/issues/32](https://github.com/snaptortoise/jekyll-rss-feeds/issues/32)\n\n- **RSS Autodiscovery**: If your template is not already setup to do so, make sure the RSS feeds are discoverable by browsers, bots, etc. by providing proper link tags to your Jekyll layout files (adapt `href` and `title` appropriately):\n\n    \t\u003clink href=\"/blog/feed.xml\" type=\"application/rss+xml\" rel=\"alternate\" title=\"Latest 10 blog posts (atom)\" /\u003e\n\n    Refer to [rssboard.org/rss-autodiscovery](http://www.rssboard.org/rss-autodiscovery) for details.\n- **Validation**: You can use the W3C Validator to make sure your feeds are formatted correctly: [http://validator.w3.org/feed/](http://validator.w3.org/feed/)\n\n- If you're a [Pinboard](https://pinboard.in) user and found this repo useful, take a look at [jekyll-pinboard](https://github.com/snaptortoise/jekyll-pinboard-plugin). It allows you to load your Pinboard bookmarks into your Jekyll site with just a couple lines.\n\n- If you're looking for [JSON feed](jsonfeed.org) templates to add to your Jekyll blog please checkout the sister project: [jekyll-json-feeds](https://github.com/snaptortoise/jekyll-json-feeds).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorgemandis%2Fjekyll-rss-feeds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeorgemandis%2Fjekyll-rss-feeds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorgemandis%2Fjekyll-rss-feeds/lists"}