All Projects → poole → Hyde

poole / Hyde

Licence: other
A brazen two-column theme for Jekyll.

Programming Languages

CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to Hyde

gereksiz
A minimalist Jekyll theme
Stars: ✭ 52 (-98.4%)
Mutual labels:  jekyll, jekyll-theme
End2end
💎 Clean Jekyll theme
Stars: ✭ 263 (-91.9%)
Mutual labels:  jekyll, jekyll-theme
forever-jekyll
A simple, elegant & full featured Jekyll theme.
Stars: ✭ 26 (-99.2%)
Mutual labels:  jekyll, jekyll-theme
Base Jekyll Template
📘 Knowledge base template for Jekyll
Stars: ✭ 272 (-91.62%)
Mutual labels:  jekyll, jekyll-theme
Edition Jekyll Template
📚 Product documentation template for Jekyll
Stars: ✭ 261 (-91.96%)
Mutual labels:  jekyll, jekyll-theme
startbootstrap-stylish-portfolio-jekyll
Jekyll theme based on Stylish Portfolio Bootstrap theme
Stars: ✭ 20 (-99.38%)
Mutual labels:  jekyll, jekyll-theme
prasad
[ WIP ] Prasad is a complete Jekyll theme designed for portfolio and blog for developers.
Stars: ✭ 14 (-99.57%)
Mutual labels:  jekyll, jekyll-theme
unifreak.github.io
FangHao's blog
Stars: ✭ 20 (-99.38%)
Mutual labels:  jekyll, jekyll-theme
event-jekyll-theme
Jekyll Theme package for your event
Stars: ✭ 119 (-96.33%)
Mutual labels:  jekyll, jekyll-theme
tactile
Tactile is a Jekyll theme for GitHub Pages
Stars: ✭ 70 (-97.84%)
Mutual labels:  jekyll, jekyll-theme
jekyll-clean-dark
Dark clean theme for jekyll
Stars: ✭ 198 (-93.9%)
Mutual labels:  jekyll, jekyll-theme
Lanyon
A content-first, sliding sidebar theme for Jekyll.
Stars: ✭ 2,943 (-9.33%)
Mutual labels:  jekyll, jekyll-theme
jekyll-theme-hamilton
A minimal and beautiful Jekyll theme best for writing and note-taking.
Stars: ✭ 128 (-96.06%)
Mutual labels:  jekyll, jekyll-theme
Halve
Stylish Two-Column Jekyll Theme
Stars: ✭ 291 (-91.04%)
Mutual labels:  jekyll, jekyll-theme
junior-theme
⚫ A striking black and white theme for Jekyll. Built as a developer blog + portfolio.
Stars: ✭ 66 (-97.97%)
Mutual labels:  jekyll, jekyll-theme
academic
Jekyll theme with a focus on simplicity, typography and flexibility
Stars: ✭ 71 (-97.81%)
Mutual labels:  jekyll, jekyll-theme
fuse-core
The 'Fuse Core' Jekyll theme.
Stars: ✭ 29 (-99.11%)
Mutual labels:  jekyll, jekyll-theme
online-resume
A Jekyll theme for resume / cv based on Markdown. Demo: https://tarrex.github.io/online-resume
Stars: ✭ 27 (-99.17%)
Mutual labels:  jekyll, jekyll-theme
mr-brown
Mr.Brown is a responsive Jekyll theme
Stars: ✭ 21 (-99.35%)
Mutual labels:  jekyll, jekyll-theme
jekyll-theme-Hydrogen
👍轻盈、简洁的Jekyll主题,A Lightweight and Concise Jekyll theme For You.
Stars: ✭ 60 (-98.15%)
Mutual labels:  jekyll, jekyll-theme

Hyde

Hyde is a brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. It's based on Poole, the Jekyll butler.

Hyde screenshot

Contents

Usage

Hyde is a theme built on top of Poole, which provides a fully furnished Jekyll setup—just download and start the Jekyll server. See the Poole usage guidelines for how to install and use Jekyll.

Options

Hyde includes some customizable options, typically applied via classes on the <body> element.

Sidebar menu

Create a list of nav links in the sidebar by assigning each Jekyll page the correct layout in the page's front-matter.

---
layout: page
title: About
---

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.

Sticky sidebar content

By 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.

<!-- Default sidebar -->
<div class="sidebar">
  <div class="container sidebar-sticky">
    ...
  </div>
</div>

<!-- Modified sidebar -->
<div class="sidebar">
  <div class="container">
    ...
  </div>
</div>

Themes

Hyde ships with eight optional themes based on the base16 color scheme. Apply a theme to change the color scheme (mostly applies to sidebar and links).

Hyde in red

There are eight themes available at this time.

Hyde theme classes

To use a theme, add anyone of the available theme classes to the <body> element in the default.html layout, like so:

<body class="theme-base-08">
  ...
</body>

To create your own theme, look to the Themes section of included CSS file. Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors.

Reverse layout

Hyde with reverse layout

Hyde's page orientation can be reversed with a single class.

<body class="layout-reverse">
  ...
</body>

Development

Hyde has two branches, but only one is used for active development.

  • master for development. All pull requests should be submitted against master.
  • gh-pages for our hosted site, which includes our analytics tracking code. Please avoid using this branch.

Author

Mark Otto

License

Open sourced under the MIT license.

<3

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].