home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit fc8e309634ec2203085b445fb8b6b14bac23e099
parent 3e2da551af8ffca4f155e3ca2c8b88f1dd8d24be
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Tue,  5 Oct 2021 19:03:33 +0200

Fix publish.el

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mwww/vincent.demeester.fr/publish.el | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/www/vincent.demeester.fr/publish.el b/www/vincent.demeester.fr/publish.el @@ -114,6 +114,12 @@ :publishing-directory "./public/css" :publishing-function org-publish-attachment :recursive t) + ("images" + :base-directory "./images" + :base-extension ,site-attachments + :publishing-directory "./public/images" + :publishing-function org-publish-attachment + :recursive t) ("assets" :base-directory "./assets" :base-extension ,site-attachments @@ -126,7 +132,7 @@ :publishing-directory "./public/" :publishing-function org-publish-attachment :recursive t) - ("all" :components ("posts" "about" "index" "articles" "articles-assets" "css" "assets" "legacy" "posts-rss")))) + ("all" :components ("posts" "about" "index" "articles" "articles-assets" "css" "images" "assets" "legacy" "posts-rss")))) (provide 'publish) ;;; publish.el ends here