Overview

hyde in a nutshell

Hyde is a static website generator written in python. While Hyde took life as awesome Jekyll's evil twin, it has since been completely consumed by the dark side and has an identity of its own.

Hyde desires to fulfill the lofty goal of removing the pain points involved in creating and maintaining static websites.

Spotlight

  • Support for powerful template languages like Jinja2 complemented with custom tags and filters.
  • Rich object model and overridable hierarchical metadata thats available for use in templates.
  • Configurable sorting, filtering and grouping support.
  • Extensible plugin architecture with Text preprocessing and html postprocessing support for complex content transformations.
  • Instant preview using built-in webserver that regenerates content if needed.

Install

There will be a package soon on pypi, but this works for now:

pip install -e https://github.com/hydepy/hyde#egg=hyde

You can find more detailed documentation in the installation section.

Run

After installation is successful, creating & generating your website is extremely simple.

To create a new hyde website:

hyde -s /path/to/your site create

To generate the website:

cd /path/to/your/site
hyde gen

To run the built in webserver that autogenerates if needed:

hyde serve

You can access the website now at http://localhost:8080

For all the supported options, read command line documentation or run hyde --h.

Source

Hyde is socially coded. Feel free to fork.

Project Roadmap

  1. Support for Django and Mako
    • Template implementation
    • Default layouts
  2. Support for other markup languages
    • restructured text
    • textile
    • asciidoc
  3. Text Compression
    • Slimmer
    • pre-gzipping
    • uglifyjs
  4. Image Manipulation
    • Optipng Compression
    • Thumbnail generation
    • Photo Data Extraction
  5. Feed / Listing generation
  6. Translation