diff options
| author | lemurianmage <azureazure@disroot.org> | 2025-11-24 22:20:34 +0100 |
|---|---|---|
| committer | lemurianmage <azureazure@disroot.org> | 2025-11-24 22:20:34 +0100 |
| commit | 5a58bff253ae63c930d48cb8bf02532833b71984 (patch) | |
| tree | c5af8bc3949000e12d26fab437fdc206863b6731 /build-site.el | |
| download | slimegirl.nexus-5a58bff253ae63c930d48cb8bf02532833b71984.tar.gz | |
website skeleton
Diffstat (limited to 'build-site.el')
| -rw-r--r-- | build-site.el | 22 |
1 files changed, 22 insertions, 0 deletions
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!") |
