;; ORG publish function
;;
(setq org-publish-project-alist
'(
("orgfiles"
:base-directory "/home/xxxxx/Dropbox/website/src/"
:base-extension "org"
:publishing-directory ""/home/xxxxx/Dropbox/website/public_html/"
:recursive t
:html-postamble nil
:publishing-function org-html-publish-to-html)
("images"
:base-directory ""/home/xxxxx/Dropbox/website/src/"
:recursive t
:base-extension "jpg\\|gif\\|png\\|ico"
:publishing-directory ""/home/xxxxx/Dropbox/website/public_html/"
:publishing-function org-publish-attachment)
("style"
:base-directory ""/home/xxxxx/Dropbox/website/src/"
:recursive t
:base-extension "js\\|css\\|otf\\|eot\\|svg\\|ttf\\|woff"
:publishing-directory ""/home/xxxxx/Dropbox/website/public_html/"
:publishing-function org-publish-attachment)
("sessions"
:base-directory ""/home/xxxxx/Dropbox/website/src/sessions/"
:base-extension "css\\|js\\|png"
:publishing-directory ""/home/xxxxx/Dropbox/website/public_html/sessions/"
:publishing-function org-publish-attachment)
("rss_posts"
:base-directory ""/home/xxxxx/Dropbox/website/src/posts/"
:base-extension "org"
:html-link-home "http://xxxx.xxxx.free.fr"
:rss-extension "xml"
:publishing-directory "/home/xxxx/Dropbox/website/public_html/posts/"
:publishing-function (org-rss-publish-to-rss)
:section-numbers nil
:exclude ".*"
:table-of-contents nil)
("website" :components ("orgfiles" "images" "style" "sessions" "rss_posts"))
)
)