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.
- Host: GitHub
- URL: https://github.com/dropseed/combine
- Owner: dropseed
- License: mit
- Created: 2018-06-13T21:50:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-05T21:00:22.000Z (11 months ago)
- Last Synced: 2024-11-30T14:55:31.375Z (10 months ago)
- Topics: html, jinja, static-site-generator
- Language: Python
- Homepage: https://combine.dropseed.dev
- Size: 610 KB
- Stars: 12
- Watchers: 3
- Forks: 2
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.