From ef1ba82c453e3305ee01ec6551085ec5ee06ddf1 Mon Sep 17 00:00:00 2001 From: azureazure Date: Wed, 24 Dec 2025 17:07:42 +0100 Subject: fancy fonts and lots of minor adjustments --- build-site.el | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'build-site.el') diff --git a/build-site.el b/build-site.el index d60829a..b834312 100644 --- a/build-site.el +++ b/build-site.el @@ -43,10 +43,10 @@ :time-stamp-file nil) (list "assets" :recursive t - :base-directory "./src" - :base-extension "css\\|png\\|ico\\|jpg\\|gif" + :base-directory "./src/assets" + :base-extension 'any :publishing-function 'org-publish-attachment - :publishing-directory "./public") + :publishing-directory "./public/assets") (list "blog" :recursive t :base-directory "./src/blog" @@ -56,7 +56,7 @@ :with-toc nil :auto-sitemap t :time-stamp-file nil - :sitemap-title "blog posts" + :sitemap-title "Blog posts" :sitemap-filename "index.org" :sitemap-sort-files 'anti-chronologically :sitemap-format-entry 'custom/sitemap-format-entry))) @@ -70,7 +70,9 @@ "rss.xml" "./public/blog" "https://lemurianmage.srht.site" - (cddr (delete "index.html" (directory-files "public/blog"))) ; no ".", ".." and index + (seq-filter + (lambda (x) (not (or (file-directory-p x) (string= x "index.html")))) + (directory-files "public/blog")) ; no ".", "..", and index.html :title "lemurblog" :builder 'webfeeder-make-rss :build-date 0)) -- cgit v1.2.3