lumeland / lume

🔥 Static site generator for Deno 🦕
https://lume.land
MIT License
1.75k stars 74 forks source link
deno eta jsx liquid lume markdown nunjucks postcss react static-site-generator svgo typescript yaml

🔥Lume

deno.land/x/lume Contributor Covenant

Lume is the Galician word for fire but also a (yet another) static site generator for Deno.

It’s inspired by other general-purpose static site generators, such as Jekyll and Eleventy, but it’s faster, simpler and easier to use and configure, besides being super flexible.



Quick start

Make sure you have Deno installed.

Create your first page, for example, using the Nunjucks file index.njk:

---
title: Welcome to my page
---
<html>
  <head>
    <title>{{ title }}</title>
  </head>
  <body>
    <h1>{{ title }}</h1>
  </body>
</html>

Build it:

deno run -A https://deno.land/x/lume/cli.ts

This command will compile your documents to HTML and save them into the directory _site.


Please see CHANGELOG for information about the recent changes.

Licensed under the MIT License. See LICENSE for more information.