celldee / finch

Simple and fast site generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build

Finch

A simple and fast1 site generator.

Can be used as:

  • A generic static site generator using markdown files with frontmatter and Jingoo (very similar to Jinja) templates
  • A tiny version of Gatsby -- generate static pages from React components
  • A server side renderer to produce static pages with React components that are hydrated by scripts (see the examples directory)

Installation

With opam: opam install finch

It is also available as a Docker container: docker run -v $(pwd):/finch roddylm/finch:latest -help

Use

Make a directory called layouts. Add template files to it with {{ page.content }} where the content of a page being rendered should go. Then make a directory called content. Add files to it that look like this:

---
layout: "path/to/a/template/relative/to/layouts"
other: "variables"
if: "you want"
---
The *content* of the page in [markdown](https://en.wikipedia.org/wiki/Markdown).

Then run finch. The output site will be in the directory site.

See here for detailed documentation.

1 From ad hoc comparisons, about twice as fast as Hugo to build simple sites with 10,000-100,000 pages, and successfully built a site with 500,000 pages where Hugo froze my machine.

About

Simple and fast site generator

License:MIT License


Languages

Language:OCaml 77.6%Language:CSS 8.9%Language:Dockerfile 6.7%Language:HTML 5.5%Language:Python 0.7%Language:Makefile 0.6%