From 5a58bff253ae63c930d48cb8bf02532833b71984 Mon Sep 17 00:00:00 2001 From: lemurianmage Date: Mon, 24 Nov 2025 22:20:34 +0100 Subject: website skeleton --- build-site.el | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 build-site.el (limited to 'build-site.el') diff --git a/build-site.el b/build-site.el new file mode 100644 index 0000000..c22b1b0 --- /dev/null +++ b/build-site.el @@ -0,0 +1,22 @@ +(require 'ox-publish) + +(setq org-html-validation-link nil + org-html-head-include-scripts nil + org-html-head-include-default-style nil) + +(setq org-publish-project-alist + (list + (list "lemur.tld" + :recursive t + :base-directory "./src" + :publishing-function 'org-html-publish-to-html + :publishing-directory "./public" + :with-author nil + :with-creator t + :with-toc nil + :section-numbers nil + :time-stamp-file nil))) + +(org-publish-all t) + +(message "Build done!") -- cgit v1.2.3