{"id":13612325,"url":"https://github.com/chaelcodes/jekyll-twitch","last_synced_at":"2025-07-30T01:40:05.222Z","repository":{"id":52572134,"uuid":"349473051","full_name":"ChaelCodes/jekyll-twitch","owner":"ChaelCodes","description":"Embed Twitch clips, VODs, and broadcasts in your Jekyll sites.","archived":false,"fork":false,"pushed_at":"2025-06-27T22:08:47.000Z","size":111,"stargazers_count":9,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-27T23:44:29.828Z","etag":null,"topics":["embed-twitch-clips","hacktoberfest","jekyll","jekyll-plugin","ruby"],"latest_commit_sha":null,"homepage":"https://www.chael.codes/jekyll-twitch/","language":"Ruby","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/ChaelCodes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-03-19T15:39:09.000Z","updated_at":"2024-07-28T22:56:44.000Z","dependencies_parsed_at":"2023-01-20T13:01:50.517Z","dependency_job_id":null,"html_url":"https://github.com/ChaelCodes/jekyll-twitch","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ChaelCodes/jekyll-twitch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChaelCodes%2Fjekyll-twitch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChaelCodes%2Fjekyll-twitch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChaelCodes%2Fjekyll-twitch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChaelCodes%2Fjekyll-twitch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChaelCodes","download_url":"https://codeload.github.com/ChaelCodes/jekyll-twitch/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChaelCodes%2Fjekyll-twitch/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267793730,"owners_count":24145085,"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-07-29T02:00:12.549Z","response_time":2574,"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":["embed-twitch-clips","hacktoberfest","jekyll","jekyll-plugin","ruby"],"created_at":"2024-08-01T20:00:27.735Z","updated_at":"2025-07-30T01:40:05.176Z","avatar_url":"https://github.com/ChaelCodes.png","language":"Ruby","funding_links":[],"categories":["Tags"],"sub_categories":[],"readme":"# Jekyll::Twitch\n\nThis gem allows you to embed twitch channels, clips, collections, and videos in your Jekyll websites. It adds and registers a new twitch liquid tag that accepts a twitch clip, channel, broadcast, or highlight url. It's based on the [Twitch video embeds](https://dev.twitch.tv/docs/embed/video-and-clips).\n\n`{% twitch https://www.twitch.tv/chaelcodes/clip/SpoopySlipperyGrasshopperPogChamp %}`\n\n## [See the DEMO site](https://www.chael.codes/jekyll-twitch/)\nCheck out the [demo site](https://www.chael.codes/jekyll-twitch/) for install instructions and to review different embed examples.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'jekyll-twitch'\n```\n\nAnd then execute:\n\n    $ bundle install\n\nOr install it yourself as:\n\n    $ gem install jekyll-twitch\n\nThen add Jekyll-Twitch to your `_config.yml` like so:\n```\nplugins:\n  - jekyll-twitch\n```\n\n## Usage\n\nThis is a Jekyll liquid tag, so just put `{% twitch  https://www.twitch.tv/chaelcodes/clip/SpoopySlipperyGrasshopperPogChamp %}` to embed your clip, channel, or broadcast.\n\nWhen building your site, Jekyll no longer substitutes `site.url` for localhost, which means Twitch embeds will not render. You need to supply host and localhost to view clips in development. `jekyll serve --host localhost --port 4000`\n\nAll of the below examples are on the demo site with actual embeds. I strongly recommend using that.\n\n### Channel\nThis channel embed will show the broadcast while the streamer is live, and the channel offline art when they are not.\n\n```\n\u003cdiv style=\"width:720px;height:480px\"\u003e\n  {% twitch https://twitch.tv/ChaelCodes %}\n\u003c/div\u003e\n```\n### Collection\nThis embed is used to add a collection of videos to your page or post.\n\n```\n\u003cdiv style=\"width:720px;height:480px\"\u003e\n  {% twitch https://www.twitch.tv/collections/x5bG2TGTeBYIRg %}\n\u003c/div\u003e\n```\n### Clips\nThis embed is used to add one Twitch clip to your page or post.\n\n```\n\u003cdiv style=\"width:720px;height:480px\"\u003e\n  {% twitch https://www.twitch.tv/chaelcodes/clip/DeterminedSweetRedpandaDoritosChip-pQiRlDz6rQ9uvuuq %}\n\u003c/div\u003e\n```\n### Videos\nWhether you call them videos, vods, or higlights, this will embed them in your page or psot.\n\n```\n\u003cdiv style=\"width:720px;height:480px\"\u003e\n  {% twitch https://www.twitch.tv/videos/716698136 %}\n\u003c/div\u003e\n```\n\n## Contributing\nBug reports and pull requests are welcome on GitHub at https://github.com/ChaelCodes/jekyll-twitch. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/ChaelCodes/jekyll-twitch/blob/main/CODE_OF_CONDUCT.md).\n\nFor more details on setting up the local environment, demo site, and releasing a new version, see our [CONTRIBUTING.md](/CONTRIBUTING.md).\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n\n## Code of Conduct\n\nEveryone interacting in the Jekyll::Twitch project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ChaelCodes/jekyll-twitch/blob/main/CODE_OF_CONDUCT.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchaelcodes%2Fjekyll-twitch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchaelcodes%2Fjekyll-twitch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchaelcodes%2Fjekyll-twitch/lists"}