Popularity
5.4
Stable
Activity
0.0
Stable
78
2
4

Programming language: Elixir
License: MIT License
Latest version: v0.1.0

glayu alternatives and similar packages

Based on the "Static Page Generation" category.
Alternatively, view glayu alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of glayu or a related project?

Add another 'Static Page Generation' Package

README

glayu

Build Status

What is Glayu?

Glayu is a static site generator for mid-sized sites that generate content frequently and have to deal with multiple categories, like magazines and newspapers.

What makes Glayu different from other static site generators is the way it structures the source folder: when you publish an article using Glayu, the markdown file is placed inside a subfolder of the source directory following the permalink definition.

With the default permalink definition categories/year/month/day/title your source and public directories will look like:

Workflow

The motivation of this source folder organization is to split the site content in smaller units that can be managed independently. Glayu takes advance of this folder organization to enable the concurrent and partial generation of the site.

In the previous example a complete build of the site will handle the /source/_posts/world/2017/07/11 and /source/_posts/us/2017/11 folders concurrently.

Glayu enables the partial generation of the site by using regular expressions, so if you will be interested in only generate the world articles you could use the build command like this:

$ glayu build _posts/world*

Features

  • Partial site generation.
  • Well organized source folder.
  • Fast, thanks to Elixir and the Erlang VM.
  • Themes support.
  • Partials support.

Quick Start

Pre-requisites: Erlang installed on your machine.

Get the latest Glayu binary, grant execution permissions if needed, and add it to your PATH

Init the site.

$ glayu init glayu_site
๐Ÿฆ Your Glayu site has been created at ${PATH_TO_SITE}/glayu_site

Create your first post.

$ cd ./glayu_site
$ glayu new "My First Glayu Article"
๐Ÿฆ Post created at ${PATH_TO_SITE}/glayu_site/source/_drafts/my-first-glayu-article.md

Publish your post.

$ glayu publish my-first-glayu-article.md
๐Ÿฆ Draft published to ${PATH_TO_SITE}/glayu_site/source/_posts/software/static-sites/2017/07/11/my-first-glayu-article.md

Build the site.

$ glayu build
โœ“ Site pages generated.
โ””โ”€โ”€ 1 pages generated.
โœ“ Category pages generated.
โ””โ”€โ”€ 2 category pages generated.
โœ“ Home page generated.
โœ“ Site assets copied from theme folder to public folder.
โ””โ”€โ”€ 20 files copied.
๐Ÿฆ Site Generated Successfully.

The site pages are generated under ../glayu_site/public

Documentation Site

Check the docs.

Themes

Glayu Times

Glayu Bootswatch by David Gustafsson

Source Code Organization

Glayu is an Elixir umbrella project including following applications:

Application Description
glayu glayu escript binary generation
glayu_core main Glayu logic
glayu_build SiteTree and site pages rendering logic
glayu_preview_server preview server

License

This project is available under the MIT license.


*Note that all licence references and agreements mentioned in the glayu README section above are relevant to that project's source code only.