{"id":13424356,"url":"https://github.com/poole/hyde","last_synced_at":"2025-05-13T18:11:51.345Z","repository":{"id":6820036,"uuid":"8068127","full_name":"poole/hyde","owner":"poole","description":"A brazen two-column theme for Jekyll.","archived":false,"fork":false,"pushed_at":"2024-07-03T19:48:54.000Z","size":113,"stargazers_count":3730,"open_issues_count":43,"forks_count":4010,"subscribers_count":66,"default_branch":"master","last_synced_at":"2025-04-25T15:48:48.108Z","etag":null,"topics":["jekyll","jekyll-theme"],"latest_commit_sha":null,"homepage":"http://hyde.getpoole.com","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/poole.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":"2013-02-07T07:01:38.000Z","updated_at":"2025-04-23T16:00:54.000Z","dependencies_parsed_at":"2023-01-13T14:07:08.084Z","dependency_job_id":"dff862ea-6cf1-44ad-9708-281990c64a18","html_url":"https://github.com/poole/hyde","commit_stats":{"total_commits":85,"total_committers":14,"mean_commits":6.071428571428571,"dds":"0.19999999999999996","last_synced_commit":"7c7f7550898e081264d255ef429a134fb00c72a8"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poole%2Fhyde","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poole%2Fhyde/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poole%2Fhyde/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/poole%2Fhyde/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/poole","download_url":"https://codeload.github.com/poole/hyde/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254000856,"owners_count":21997442,"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","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":["jekyll","jekyll-theme"],"created_at":"2024-07-31T00:00:52.816Z","updated_at":"2025-05-13T18:11:51.321Z","avatar_url":"https://github.com/poole.png","language":"CSS","funding_links":[],"categories":["CSS","By Language"],"sub_categories":["Web"],"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%2Fpoole%2Fhyde","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpoole%2Fhyde","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpoole%2Fhyde/lists"}