Email or username:

Password:

Forgot your password?
Caffeine’s Heir

My POSIX-compliant static website generator's new release of Phraxos is live. Just a bunch of fixes: phraxos.caffeine.computer/rele

I love it so much. It's so simple to use. No markdown, no JS, no BS — only HTML.

You tweak one script line to set your website's main title; from there, add page fragments (without the layout) to the `pages` directory. `bin/build `to build it.

Copy the `out` directory contents to your server, and done.

Ah, customize `template.html` as needed.

4 comments
la ninpre

@caffeine hmm, based on usage of `head` in your code, i think one can replace it with `sed 1q` or `awk 'NR==1'. i dunno why, just for fun.

Caffeine’s Heir

@la_ninpre I tried. `head` performs better. I wanted to use `awk` only, but it was much slower than `head` and `grep`.

la ninpre

@caffeine hmmm, interesting, but it kinda makes sense. my intuition is that maybe busybox versions of these tools will be faster than gnu coreutils. but i haven't tested it yet.

Caffeine’s Heir

@la_ninpre I have people running it even over git-bash.exe so I can't pick and choose much :(

Go Up