All Projects → hyde → Hyde

hyde / Hyde

Licence: mit
A Python Static Website Generator

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Hyde

Vuepress
📝 Minimalistic Vue-powered static site generator
Stars: ✭ 19,730 (+1133.9%)
Mutual labels:  static-site-generator, blog-engine
Zola
A fast static site generator in a single binary with everything built-in. https://www.getzola.org
Stars: ✭ 7,823 (+389.24%)
Mutual labels:  static-site-generator, blog-engine
Gostatic
Fast static site generator
Stars: ✭ 387 (-75.8%)
Mutual labels:  static-site-generator, blog-engine
Middleman Blog
Middleman : Blog Engine Extension
Stars: ✭ 317 (-80.18%)
Mutual labels:  static-site-generator, blog-engine
Gojekyll
A fast clone of the Jekyll blogging engine, in Go
Stars: ✭ 62 (-96.12%)
Mutual labels:  static-site-generator, blog-engine
Bridgetown
A Webpack-aware, Ruby-powered static site generator for the modern Jamstack era
Stars: ✭ 317 (-80.18%)
Mutual labels:  static-site-generator, blog-engine
Wowchemy Hugo Modules
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, build with widgets! 创建在线课程,学术简历或初创网站。
Stars: ✭ 6,093 (+281.05%)
Mutual labels:  static-site-generator, blog-engine
gisture
A minimal and flexible blog generator based on GitHub Gist.
Stars: ✭ 24 (-98.5%)
Mutual labels:  static-site-generator, blog-engine
Bengine
A Simple Data-Driven static site generator
Stars: ✭ 34 (-97.87%)
Mutual labels:  static-site-generator, blog-engine
Ink
An elegant static blog generator
Stars: ✭ 950 (-40.59%)
Mutual labels:  static-site-generator, blog-engine
Verless
A simple and lightweight Static Site Generator.
Stars: ✭ 276 (-82.74%)
Mutual labels:  static-site-generator, blog-engine
Eleventy
A simpler static site generator. An alternative to Jekyll. Transforms a directory of templates (of varying types) into HTML.
Stars: ✭ 10,867 (+579.61%)
Mutual labels:  static-site-generator, blog-engine
nera
A lightweight static site generator
Stars: ✭ 12 (-99.25%)
Mutual labels:  static-site-generator, blog-engine
Jekyll
🌐 Jekyll is a blog-aware static site generator in Ruby
Stars: ✭ 43,803 (+2639.4%)
Mutual labels:  static-site-generator, blog-engine
minimal
Website and blog generator for Go, Node.js or Python
Stars: ✭ 94 (-94.12%)
Mutual labels:  static-site-generator, blog-engine
Assemble
Community
Stars: ✭ 3,995 (+149.84%)
Mutual labels:  static-site-generator, blog-engine
wowchemy-hugo-themes
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, easily build with blocks! 创建在线课程,学术简历或初创网站。#OpenScience
Stars: ✭ 6,891 (+330.96%)
Mutual labels:  static-site-generator, blog-engine
acblog
An open source extensible static & dynamic blog system. (an alternative tool with same features at StardustDL/paperead)
Stars: ✭ 60 (-96.25%)
Mutual labels:  static-site-generator, blog-engine
Nextein
A static site generator with markdown + react for Next.js
Stars: ✭ 825 (-48.41%)
Mutual labels:  static-site-generator, blog-engine
Heckle
✒️ Jekyll in Haskell (feat. LaTeX)
Stars: ✭ 80 (-95%)
Mutual labels:  static-site-generator, blog-engine

Version 0.8.9

https://travis-ci.org/hyde/hyde.svg?branch=master

Overview

Hyde starter kit by merlinrebrovic is a really nice way to get started with hyde.

Hyde layout for bootstrap by auzigog is also a good alternative if you like Twitter's bootstrap framework.

You can also take a look at Hyde Powered Websites for inspiration and reference.

Currently hyde is only supported on python 2.7.x. Python 3.x support is in progress, thanks to jonafato.

Active development of hyde had stalled for some time, but thanks to llonchj and jonafato there is now a slow but steady progress towards 1.0.

Mailing List: hyde-dev on google groups. IRC: #hyde on freenode

Installation

To get the latest released version:

pip install hyde

For the current trunk:

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

Creating a new hyde site

The following command:

hyde -s ~/test_site create

will create a new hyde site using the test layout.

Generating the hyde site

cd ~/test_site
hyde gen

Serving the website

cd ~/test_site
hyde serve
open http://localhost:8080

Publishing the website

cd ~/test_site
hyde publish -p github

Hyde supports extensible publishers.

Github

The hyde documentation is published to github pages using this command with the following configuration:

publisher:
    github:
        type: hyde.ext.publishers.dvcs.Git
        path: ../hyde.github.com
        url: [email protected]:hyde/hyde.github.com.git

Note

Currently, the initial path must have clone of the repository already in place for this command to work.

PyFS

Hyde also has a publisher that acts as a frontend to the awesome PyFS library (thanks to rfk). Here are a few configuration options for some PyFS backends:

publisher:
    zip:
        type: hyde.ext.publishers.pyfs.PyFS
        url: zip://~/deploy/hyde/docs.zip
    s3:
        type: hyde.ext.publishers.pyfs.PyFS
        url: s3://hyde/docs
    sftp:
        type: hyde.ext.publishers.pyfs.PyFS
        url: sftp:hydeuser:[email protected]

Note

PyFS is not installed with hyde. In order to use the PyFS publisher, you need to install pyfs separately.

Any PyFS dependencies (Example: boto for S3 publishing) need to be installed separately as well.

pip install fs
pip install boto

To get additional help on PyFS backends, you can run the following command once PyFS is installed:

fsls --listopeners

Examples

  1. julien.danjou.info
  2. luffy.cx
  3. Cloudpanic
  4. Hyde Documentation Source

A brief list of features

  1. Evented Plugins: The Plugin hooks allow plugins to listen to events that occur during different times in the lifecycle and respond accordingly.
  2. Metadata: Hyde now supports hierarchical metadata. You can specify and override variables at the site, node or the page level and access them in the templates.
  3. Organization: The sorter, grouper and tagger plugins provide rich meta-data driven organizational capabilities to hyde sites.
  4. Publishing: Hyde sites can be published to variety of targets including github pages, Amazon S3 & SFTP.

Links

  1. Changelog
  2. Authors
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].