aboutsummaryrefslogtreecommitdiff
path: root/build-site.el
diff options
context:
space:
mode:
authorlemurianmage <azureazure@disroot.org>2025-11-25 22:01:07 +0100
committerlemurianmage <azureazure@disroot.org>2025-11-25 22:01:07 +0100
commit9fa14f6ff56f96642b325cd219d9dbdb316f0b5c (patch)
tree0671e7637e8746210696375e362e7ee3e127561a /build-site.el
parent92274c283758b04699166d08409da58827b5ef9e (diff)
downloadslimegirl.nexus-9fa14f6ff56f96642b325cd219d9dbdb316f0b5c.tar.gz
minor improvements + favicon
Diffstat (limited to 'build-site.el')
-rw-r--r--build-site.el16
1 files changed, 12 insertions, 4 deletions
diff --git a/build-site.el b/build-site.el
index c22b1b0..35d55e6 100644
--- a/build-site.el
+++ b/build-site.el
@@ -2,20 +2,28 @@
(setq org-html-validation-link nil
org-html-head-include-scripts nil
- org-html-head-include-default-style nil)
+ org-html-head-include-default-style nil
+ org-html-head-extra "<link rel=\"icon\" href=\"assets/favicon.ico\">")
(setq org-publish-project-alist
(list
- (list "lemur.tld"
+ (list "content"
:recursive t
:base-directory "./src"
:publishing-function 'org-html-publish-to-html
:publishing-directory "./public"
:with-author nil
- :with-creator t
+ :with-creator nil
:with-toc nil
+ :with-title nil
:section-numbers nil
- :time-stamp-file nil)))
+ :time-stamp-file nil)
+ (list "assets"
+ :recursive t
+ :base-directory "./src"
+ :base-extension "css\\|png\\|ico\\|jpg\\|gif"
+ :publishing-function 'org-publish-attachment
+ :publishing-directory "./public")))
(org-publish-all t)