Clean HTML templates for static sites.
npm install pugneum
Pugneum is a clean, whitespace sensitive syntax for writing HTML. Here is a simple example:
html(lang="en")
head
title Example
script(type='text/javascript').
if (foo) {
bar(1 + 5);
}
body
h1 Pugneum
#container.centered
p.
Pugneum is a terse and simple templating language
with a focus on static pure HTML web sites.
That code compiles to:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Example</title>
<script type="text/javascript">
if (foo) {
bar(1 + 5);
}
</script>
</head>
<body>
<h1>Pugneum</h1>
<div id="container" class="centered">
<p>
Pugneum is a terse and simple templating language
with a focus on static pure HTML web sites.
</p>
</div>
</body>
</html>
Pugneum is a variant of pug, modified to be fully static. All dynamic features have been removed. Only the clean language remains.
The command line utility requires a pugneum.json
file to work:
{
"inputDirectory": "pg/files",
"outputDirectory": "example.com",
"baseDirectory": "pg"
}
Committing this file to version control is recommended.
Once it exists, the pugneum templates can be compiled to HTML with a command line tool:
pugneum
const pg = require('pugneum');
let html = pg.render('h1 Hello, world!');
let html = pg.renderFile('page.pg');
MIT