{"id":29696438,"url":"https://github.com/hugo-fixit/hugo-atom-feed","last_synced_at":"2025-08-10T13:11:49.866Z","repository":{"id":272252905,"uuid":"845847150","full_name":"hugo-fixit/hugo-atom-feed","owner":"hugo-fixit","description":"Hugo theme component for ATOM feed custom Output Format.","archived":false,"fork":false,"pushed_at":"2025-07-04T02:16:10.000Z","size":16,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-23T09:53:06.904Z","etag":null,"topics":["atom","feed","hugo","theme-component"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/hugo-fixit.png","metadata":{"files":{"readme":"README.en.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null},"funding":{"custom":["https://paypal.me/Lruihao"]}},"created_at":"2024-08-22T03:29:22.000Z","updated_at":"2025-07-04T02:14:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"66f301ec-f70e-44e3-a00d-47dbc10f1c6d","html_url":"https://github.com/hugo-fixit/hugo-atom-feed","commit_stats":null,"previous_names":["hugo-fixit/hugo-atom-feed"],"tags_count":6,"template":false,"template_full_name":"hugo-fixit/component-skeleton","purl":"pkg:github/hugo-fixit/hugo-atom-feed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hugo-fixit%2Fhugo-atom-feed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hugo-fixit%2Fhugo-atom-feed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hugo-fixit%2Fhugo-atom-feed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hugo-fixit%2Fhugo-atom-feed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hugo-fixit","download_url":"https://codeload.github.com/hugo-fixit/hugo-atom-feed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hugo-fixit%2Fhugo-atom-feed/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269728943,"owners_count":24465735,"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","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["atom","feed","hugo","theme-component"],"created_at":"2025-07-23T09:39:29.783Z","updated_at":"2025-08-10T13:11:49.805Z","avatar_url":"https://github.com/hugo-fixit.png","language":"HTML","funding_links":["https://paypal.me/Lruihao"],"categories":[],"sub_categories":[],"readme":"# Hugo ATOM Feed\n\nEnglish | [中文](/README.md)\n\n\u003e Hugo theme component for ATOM feed custom Output Format.\n\nThis component enables ATOM feeds for your site.\n\n## Install Component\n\nThe installation method is the same as [installing a theme](https://fixit.lruihao.cn/documentation/installation/). There are several ways to install, choose one, for example, install through Hugo Modules:\n\n```diff\n[module]\n  [[module.imports]]\n    path = \"github.com/hugo-fixit/FixIt\"\n+ [[module.imports]]\n+   path = \"github.com/hugo-fixit/hugo-atom-feed\"\n```\n\n## Configuration\n\nAdd \"atom\" to all the Page Kinds for which you want to create ATOM feeds:\n\n```toml\n[outputs]\n  # \u003cbaseURL\u003e/atom.xml\n  home = [\"html\", \"rss\", \"atom\"]\n  # \u003cbaseURL\u003e/posts/atom.xml etc.\n  section = [\"html\", \"rss\", \"atom\"]\n  # \u003cbaseURL\u003e/tags/foo/atom.xml etc.\n  term = [\"html\", \"rss\", \"atom\"]\n```\n\nIf your site uses multiple theme components, you need to merge the `outputs` configuration of all theme components. For example, if your site uses both the `FixIt` and `hugo-atom-feed` theme components, you need to merge the `outputs` configuration of the two theme components:\n\n```toml\n[outputs]\n  _merge = \"shallow\"\n  home = [\"html\", \"rss\", \"atom\", \"archives\", \"offline\", \"readme\", \"baidu_urls\", \"search\"]\n  page = [\"html\", \"markdown\"]\n  section = [\"html\", \"rss\", \"atom\"]\n  taxonomy = [\"html\"]\n  term = [\"html\", \"rss\", \"atom\"]\n```\n\n### Parameters\n\nYou can set the following parameters in your site configuration file:\n\n```toml\n[params]\n  # Global Feed config for ATOM feed.\n  [params.feed]\n    # The number of posts to include in the feed. If set to -1, all posts.\n    limit = 10\n    # whether to show the full text content in feed.\n    fullText = true\n\n  # Section page config (all pages in section)\n  [params.section]\n    # Section feed config for ATOM feed.\n    [params.section.feed]\n      # The number of posts to include in the feed. If set to -1, all posts.\n      limit = -1\n      # whether to show the full text content in feed.\n      fullText = false\n\n  # Term list (category or tag) page config\n  [params.list]\n    # Term list feed config for ATOM feed.\n    [params.list.feed]\n      # The number of posts to include in the feed. If set to -1, all posts.\n      limit = -1\n      # whether to show the full text content in feed.\n      fullText = false\n```\n\n### Front Matter\n\nYou can set the following parameters in the front matter of the content file:\n\n```yaml\n---\ntitle: \"Hello World\"\ndate: 2024-08-24T16:06:33+08:00\nhiddenFromFeed: true\nfeed:\n  # feed.limit only valid in section or term page(_index.md).\n  limit: 10\n  fullText: true\n---\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhugo-fixit%2Fhugo-atom-feed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhugo-fixit%2Fhugo-atom-feed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhugo-fixit%2Fhugo-atom-feed/lists"}