{"id":20411203,"url":"https://github.com/aryamanarora/blog2","last_synced_at":"2026-04-21T13:04:55.553Z","repository":{"id":113826662,"uuid":"70545561","full_name":"aryamanarora/blog2","owner":"aryamanarora","description":"My blog/website, using the Jekyll theme Hyde.","archived":false,"fork":false,"pushed_at":"2016-11-22T20:33:18.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-06T14:24:07.288Z","etag":null,"topics":["hyde-theme","jekyll"],"latest_commit_sha":null,"homepage":"https://aryamanarora.github.io/blog","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aryamanarora.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2016-10-11T01:55:57.000Z","updated_at":"2021-03-11T22:57:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"c7cecfad-0f91-42fb-84b9-4b8a39b44b37","html_url":"https://github.com/aryamanarora/blog2","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aryamanarora/blog2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryamanarora%2Fblog2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryamanarora%2Fblog2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryamanarora%2Fblog2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryamanarora%2Fblog2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aryamanarora","download_url":"https://codeload.github.com/aryamanarora/blog2/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryamanarora%2Fblog2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32093157,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["hyde-theme","jekyll"],"created_at":"2024-11-15T05:51:41.459Z","updated_at":"2026-04-21T13:04:55.516Z","avatar_url":"https://github.com/aryamanarora.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hyde\n\nHyde is a brazen two-column [Jekyll](http://jekyllrb.com) theme that pairs a prominent sidebar with uncomplicated content. It's based on [Poole](http://getpoole.com), the Jekyll butler.\n\n![Hyde screenshot](https://f.cloud.github.com/assets/98681/1831228/42af6c6a-7384-11e3-98fb-e0b923ee0468.png)\n\n\n## Contents\n\n- [Usage](#usage)\n- [Options](#options)\n  - [Sidebar menu](#sidebar-menu)\n  - [Sticky sidebar content](#sticky-sidebar-content)\n  - [Themes](#themes)\n  - [Reverse layout](#reverse-layout)\n- [Development](#development)\n- [Author](#author)\n- [License](#license)\n\n\n## Usage\n\nHyde is a theme built on top of [Poole](https://github.com/poole/poole), which provides a fully furnished Jekyll setup—just download and start the Jekyll server. See [the Poole usage guidelines](https://github.com/poole/poole#usage) for how to install and use Jekyll.\n\n\n## Options\n\nHyde includes some customizable options, typically applied via classes on the `\u003cbody\u003e` element.\n\n\n### Sidebar menu\n\nCreate a list of nav links in the sidebar by assigning each Jekyll page the correct layout in the page's [front-matter](http://jekyllrb.com/docs/frontmatter/).\n\n```\n---\nlayout: page\ntitle: About\n---\n```\n\n**Why require a specific layout?** Jekyll will return *all* pages, including the `atom.xml`, and with an alphabetical sort order. To ensure the first link is *Home*, we exclude the `index.html` page from this list by specifying the `page` layout.\n\n\n### Sticky sidebar content\n\nBy default Hyde ships with a sidebar that affixes it's content to the bottom of the sidebar. You can optionally disable this by removing the `.sidebar-sticky` class from the sidebar's `.container`. Sidebar content will then normally flow from top to bottom.\n\n```html\n\u003c!-- Default sidebar --\u003e\n\u003cdiv class=\"sidebar\"\u003e\n  \u003cdiv class=\"container sidebar-sticky\"\u003e\n    ...\n  \u003c/div\u003e\n\u003c/div\u003e\n\n\u003c!-- Modified sidebar --\u003e\n\u003cdiv class=\"sidebar\"\u003e\n  \u003cdiv class=\"container\"\u003e\n    ...\n  \u003c/div\u003e\n\u003c/div\u003e\n```\n\n\n### Themes\n\nHyde ships with eight optional themes based on the [base16 color scheme](https://github.com/chriskempson/base16). Apply a theme to change the color scheme (mostly applies to sidebar and links).\n\n![Hyde in red](https://f.cloud.github.com/assets/98681/1831229/42b0b354-7384-11e3-8462-31b8df193fe5.png)\n\nThere are eight themes available at this time.\n\n![Hyde theme classes](https://f.cloud.github.com/assets/98681/1817044/e5b0ec06-6f68-11e3-83d7-acd1942797a1.png)\n\nTo use a theme, add anyone of the available theme classes to the `\u003cbody\u003e` element in the `default.html` layout, like so:\n\n```html\n\u003cbody class=\"theme-base-08\"\u003e\n  ...\n\u003c/body\u003e\n```\n\nTo create your own theme, look to the Themes section of [included CSS file](https://github.com/poole/hyde/blob/master/public/css/hyde.css). Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors.\n\n### Reverse layout\n\n![Hyde with reverse layout](https://f.cloud.github.com/assets/98681/1831230/42b0d3ac-7384-11e3-8d54-2065afd03f9e.png)\n\nHyde's page orientation can be reversed with a single class.\n\n```html\n\u003cbody class=\"layout-reverse\"\u003e\n  ...\n\u003c/body\u003e\n```\n\n\n## Development\n\nHyde has two branches, but only one is used for active development.\n\n- `master` for development.  **All pull requests should be submitted against `master`.**\n- `gh-pages` for our hosted site, which includes our analytics tracking code. **Please avoid using this branch.**\n\n\n## Author\n\n**Mark Otto**\n- \u003chttps://github.com/mdo\u003e\n- \u003chttps://twitter.com/mdo\u003e\n\n\n## License\n\nOpen sourced under the [MIT license](LICENSE.md).\n\n\u003c3\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faryamanarora%2Fblog2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faryamanarora%2Fblog2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faryamanarora%2Fblog2/lists"}