{"id":25440527,"url":"https://github.com/pglevy/thats-the-pod","last_synced_at":"2026-01-23T05:38:18.534Z","repository":{"id":223605123,"uuid":"760985136","full_name":"pglevy/thats-the-pod","owner":"pglevy","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-16T21:32:16.000Z","size":39089,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-15T13:51:33.190Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pglevy.github.io/thats-the-pod/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pglevy.png","metadata":{"files":{"readme":"README.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}},"created_at":"2024-02-21T02:46:48.000Z","updated_at":"2025-03-16T21:32:19.000Z","dependencies_parsed_at":"2024-02-21T05:30:09.568Z","dependency_job_id":"6c718ce1-7300-418e-8cc0-14c985619020","html_url":"https://github.com/pglevy/thats-the-pod","commit_stats":null,"previous_names":["pglevy/thats-the-pod"],"tags_count":0,"template":false,"template_full_name":"lowcodelounge/plain-vanilla-gh-pages","purl":"pkg:github/pglevy/thats-the-pod","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pglevy%2Fthats-the-pod","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pglevy%2Fthats-the-pod/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pglevy%2Fthats-the-pod/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pglevy%2Fthats-the-pod/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pglevy","download_url":"https://codeload.github.com/pglevy/thats-the-pod/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pglevy%2Fthats-the-pod/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28681025,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T04:33:33.518Z","status":"ssl_error","status_checked_at":"2026-01-23T04:33:30.433Z","response_time":59,"last_error":"SSL_read: 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":[],"created_at":"2025-02-17T11:37:23.807Z","updated_at":"2026-01-23T05:38:18.516Z","avatar_url":"https://github.com/pglevy.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Plain Vanilla GitHub Pages README\nThe purpose of this project is to make as easy as possible for less-technical people to create and host basic web pages for free on [GitHub Pages](https://pages.github.com/).\n\n[Check out my YouTube video on how to get started using this template](https://youtu.be/jlkHEmgQhGU)\n\n## Getting started\n\n### Copying the template and setting up publishing\n1. Press the `Use this template` button on the `Code` tab.\n1. Go to the `Settings` tab and then go to the `Pages` settings.\n1. Set the `Source` to `main` and press `Save`.\n\nYou'll see a URL show up, but the site takes a few minutes before it's actually live. In the meantime, try creating a page.\n\n### Creating your first page\n1. Go to the `Code` tab.\n1. Press the `Add File` button and select `Create new file`.\n1. Name the page, for example, `first-page.md`. (Note the lack of spaces and the inclusion of the .md extension.)\n1. Add a title in the front matter:\n    ```\n    ---\n    title: First Page\n    ---\n    ```\n1. Add some content using [markdown](https://guides.github.com/features/mastering-markdown/) syntax. For example, you could start with a heading and paragraph like this:\n    ```\n    # First page\n    This is my first page.\n    ```\n5. Scroll down to the bottom of the page and press `Commit new file`.\n\n### Checking your page online\n1. On the Code tab, find and press the `Environments` link. (It may be in the right column.)\n1. On the next page (Deployments), press the `View deployment` button. (You should see the default homepage load.)\n1. In the address bar of the browser, add the name of your page _using the HTML extension_ and press return. For example: `first-page.html`. (The full address will be something like this: `https://pglevy.github.io/plain-vanilla-gh-pages/first-page.html`)\n\nYou should see the new page you created.\n\n## Next steps\nNow that you know how to create pages, here are some other things you can do:\n- Create more pages.\n- Update `index.md` (the homepage) with your own content.\n- Add links between pages so it works like a website.\n- Copy component code snippets from the [GitHub Primer design system](https://primer.style/css/components) to add more advanced functionality to your pages.\n- Customize your site language, title, and description in the `metadata.yml` file located in the `_data` folder.\n\n## Default `body` and `main` styling classes\n- By default, the `body` element includes the `p-3` utility class from Primer. This adds some padding to the page on all sides.\n- The `main` element includes these two classes: `container-md` and `markdown-body`. The first one sets a maximum width for the content area and the second provides the default GitHub styling for Markdown content.\n- To override these, add these settings to the front matter of your content page: `body-style` and `main-style`.\n\nFor example:\n```\ntitle: Home\nbody-style: p-0\nmain-style: container-lg\n```\n\nIf you want to replace the defaults with nothing, do this:\n```\ntitle: My Page\nbody-style: \"\"\nmain-style: \"\"\n```\n\n## GitHub Primer CSS framework\nThis projects uses a local copy of the Primer CSS to enable work locally and/or offline. Note this copy may not be the latest version because it needs to be kept up-to-date manually. Alternatively, you can use the hosted version, which always references the current version.\n\nTo switch to hosted CSS, replace this line in `_layouts/default.html`:\n```\n\u003clink rel=\"stylesheet\" href=\"assets/css/primer.css\"\u003e\n```\n\nwith this:\n```\n\u003clink rel=\"stylesheet\" href=\"https://unpkg.com/@primer/css/dist/primer.css\"\u003e\n```\n\n## Work with site preview using the GitHub Codespaces remote dev environment\nThis project is configured to work with Codespaces. This allows you work on variations of the site in a remote dev environment in your browser so you can try things out without publishing directly to the live, `main` branch.\n\nTo use this option, select `Open in a codespace` from the `Use this template` menu button.\n\nFor more information, see the [GitHub documentation](https://docs.github.com/en/codespaces/developing-in-codespaces/creating-a-codespace-from-a-template#creating-a-codespace-from-a-template-repository).\n\n## What to do if you're having problems\n- Try starting over with a new repository and follow the instructions again.\n- If it's still not working, [create an issue in the original Plain Vanilla GitHub Pages repo](https://github.com/lowcodelounge/plain-vanilla-gh-pages/issues), and I'll try to help.\n\n## Credit and license\nThis project was created using the [GitHub Pages gem for Jekyll](https://github.com/github/pages-gem). It is licensed under [The Unlicense](https://github.com/pglevy/plain-vanilla-gh-pages/blob/main/LICENSE), which allows everything and promises nothing. 😎\n\nFavicon is `Soft Ice Cream` from [Twemoji](https://twemoji.twitter.com/), licensed under [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpglevy%2Fthats-the-pod","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpglevy%2Fthats-the-pod","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpglevy%2Fthats-the-pod/lists"}