v0.3.0
A general-purpose static site generator
Repository
Current version released
3 years ago
🔥Homura: A general-purpose static site generator
Homura is the Japanese word for fire but also a (yet another) general-purpose static site generator, highly inspired by Jekyll and Lume.
Features
- Smart server mode for testing.
Quick start
To make your first page, create the Nunjucks file index.html.t
:
---
title: Welcome!
username: James
---
<html>
<head>
<title>{{ title }}</title>
</head>
<body>
<h1>{{ title }}</h1>
Hello {{ username }}.
</body>
</html>
Start a server:
deno run -A https://deno.land/x/homura_deno/homura.ts
Then, your page can be found in http://localhost:8000/.
Or build it:
deno run -A https://deno.land/x/homura_deno/homura.ts build
This command will generate your html file in the directory _site
.
License
MIT License. See LICENSE for details.