diff options
| author | azureazure <azureazure@disroot.org> | 2025-12-24 17:07:42 +0100 |
|---|---|---|
| committer | azureazure <azureazure@disroot.org> | 2025-12-24 17:07:42 +0100 |
| commit | ef1ba82c453e3305ee01ec6551085ec5ee06ddf1 (patch) | |
| tree | 09600c82c9e6496d1313857b85b7ad1a9a1d4f5e /build-site.el | |
| parent | 61dffd0c3a9dd11386d24665ae1b8e5d66e23dc8 (diff) | |
| download | slimegirl.nexus-ef1ba82c453e3305ee01ec6551085ec5ee06ddf1.tar.gz | |
fancy fonts and lots of minor adjustments
Diffstat (limited to 'build-site.el')
| -rw-r--r-- | build-site.el | 12 |
1 files changed, 7 insertions, 5 deletions
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)) |
