An open API service indexing awesome lists of open source software.

https://github.com/dropseed/combine

Building websites like the good old days.
https://github.com/dropseed/combine

html jinja static-site-generator

Last synced: 2 months ago
JSON representation

Building websites like the good old days.

Awesome Lists containing this project

README

          

# Combine

**Build a straightforward marketing or documentation website with the power of [Jinja](http://jinja.pocoo.org/).
No fancy JavaScript here — this is just like the good old days.**

Put your site into the "content" directory and Combine will:

- Render files using Jinja
- Create pretty URLs ("file-system routing")
- Inject variables
- Run custom build steps (like building Tailwind)

Most sites follow a simple pattern.

Create a `base.template.html`:

```html+jinja



My site

{% block content %}{% endblock %}

```

And use it (ex. `pricing.html`):

```html+jinja
{% extends "base.template.html" %}

{% block content %}



...


{% endblock %}
```

In the end, you get a static HTML site that can be deployed almost anywhere.