{"id":16256084,"url":"https://github.com/vrijraj/web-stories","last_synced_at":"2026-03-18T18:39:29.814Z","repository":{"id":257374414,"uuid":"858073882","full_name":"vrijraj/web-stories","owner":"vrijraj","description":"AMP/Web Story ","archived":false,"fork":false,"pushed_at":"2024-12-29T17:46:46.000Z","size":7563,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-08T13:26:01.636Z","etag":null,"topics":["amp","amp-story","gradus","vrijraj","web","web-story"],"latest_commit_sha":null,"homepage":"https://gradus.vrijraj.xyz/amp-web-stories?page=0","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vrijraj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-09-16T09:02:35.000Z","updated_at":"2024-12-29T17:46:50.000Z","dependencies_parsed_at":"2024-09-16T10:40:23.530Z","dependency_job_id":"85634f3a-957f-4fd5-88e1-ec18e192d0b8","html_url":"https://github.com/vrijraj/web-stories","commit_stats":{"total_commits":6,"total_committers":1,"mean_commits":6.0,"dds":0.0,"last_synced_commit":"a9fdc82827b7e288a5475475d65db20aed9925b7"},"previous_names":["vrijraj/web-stories"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vrijraj/web-stories","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrijraj%2Fweb-stories","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrijraj%2Fweb-stories/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrijraj%2Fweb-stories/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrijraj%2Fweb-stories/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vrijraj","download_url":"https://codeload.github.com/vrijraj/web-stories/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vrijraj%2Fweb-stories/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28616227,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T21:52:42.722Z","status":"ssl_error","status_checked_at":"2026-01-20T21:52:20.513Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["amp","amp-story","gradus","vrijraj","web","web-story"],"created_at":"2024-10-10T15:44:25.376Z","updated_at":"2026-01-20T22:13:07.007Z","avatar_url":"https://github.com/vrijraj.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AMP Story\n[AMP story](https://amp.dev/about/stories) is a full-screen visual storytelling experience that conveys information with images, videos, graphics, audio, and more. \n\nCheck out the [Gradus Codelab](https://gradus.vrijraj.xyz/amp-web-stories?page=0)\n\n## amp-story web component\n\n\u003cimg src='https://amp.dev/static/img/docs/tutorials/amp_story/story_parts.png' width=\"100%\"\u003e\n\n\u003cimg src=\"https://amp.dev/static/img/docs/amp-story-tag-hierarchy.png\" width=\"100%\"\u003e\n\n## Getting Started\n1. Add `amp` js library in your web page\n    ``` js\n    \u003cscript async src=\"https://cdn.ampproject.org/v0.js\"\u003e\u003c/script\u003e\n    ```\n1. Import `amp-story` library in your web page\n    ``` js\n    \u003cscript async custom-element=\"amp-story\"\n        src=\"https://cdn.ampproject.org/v0/amp-story-1.0.js\"\u003e\u003c/script\u003e\n    ```\n1. So your web page look like\n    ``` html\n    \u003c!DOCTYPE html\u003e\n    \u003chtml lang=\"en\"\u003e\n        \u003chead\u003e\n            \u003cmeta charset=\"UTF-8\"\u003e\n            \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n            \u003ctitle\u003eDocument\u003c/title\u003e\n            \u003cscript async src=\"https://cdn.ampproject.org/v0.js\"\u003e\u003c/script\u003e\n            \u003cscript async custom-element=\"amp-story\"\n            src=\"https://cdn.ampproject.org/v0/amp-story-1.0.js\"\u003e\u003c/script\u003e\n        \u003c/head\u003e\n        \u003cbody\u003e\n            \u003cp\u003eAMP Story\u003c/p\u003e\n        \u003c/body\u003e\n    \u003c/html\u003e\n    ```\n1. `\u003camp-story\u003e`, `\u003camp-story-page\u003e`, `\u003camp-story-grid-layer\u003e` in your story\n    ```html\n    \u003camp-story standalone \u003e\n        \u003camp-story-page id=\"cover\"\u003e\n            \u003camp-story-grid-layer template=\"fill\"\u003e\n                \u003camp-img src=\"/assets/a.jpg\"\n                    width=\"720\" height=\"1280\"\n                    layout=\"responsive\"\u003e\n                \u003c/amp-img\u003e\n            \u003c/amp-story-grid-layer\u003e\n            \u003camp-story-grid-layer template=\"vertical\" style=\"color:white\"\u003e\n                \u003ch1 animate-in=\"fly-in-right\"\u003eGoogle Developers Group\u003c/h1\u003e\n                \u003cp animate-in=\"fade-in\"\u003eGoogle Developer Groups (GDGs) are for developers who are interested in Google's developer technology.\u003c/p\u003e\n            \u003c/amp-story-grid-layer\u003e\n        \u003c/amp-story-page\u003e\n    \u003c/amp-story\u003e\n    ```\n\n\n## Resources\n1. [Gradus Codelab](https://gradus.vrijraj.xyz/amp-web-stories?page=0)\n1. [AMP Story Docs](https://amp.dev/documentation/guides-and-tutorials)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvrijraj%2Fweb-stories","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvrijraj%2Fweb-stories","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvrijraj%2Fweb-stories/lists"}