A list of links in Lisp. Static site generator for personal link aggregation.
linkseq generates a single, self-contained HTML file from a Clojure script. Edit the script, run it, deploy the output.
Enter the development environment:
./dev.sh
This drops you into a shell with babashka, cljfmt, and other tools. Then rebuild:
bb linkseq.clj
Output: public/index.html
To build without entering the shell:
nix build
Output: result/index.html
Edit the site map in linkseq.clj:
(def site {:title "Your Name" :avatar (h/raw (slurp "assets/avatar.txt")) :bio [...] :links [...] :socials [...]})
Add links, change colors, modify layout; it's just Clojure.
Built with Hiccup for HTML generation, Babashka for scripting, and Nix for everything else.
MIT