X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=blog.el;h=245a849cb7b98b308361d107ee7a6cac9a996471;hb=35bda6ea5602b1f1bd79e50eff027a1f24d47334;hp=2df12243dcc92be94343480f0b1f1b20537d7422;hpb=a1e8b148970121c8f944f5abb2b85cca59090366;p=blog.git diff --git a/blog.el b/blog.el index 2df1224..245a849 100644 --- a/blog.el +++ b/blog.el @@ -68,38 +68,103 @@ ;; To prevent inline-css when exporting html. will use external css (setq org-html-htmlize-output-type 'css) + +(setq blog-extra-head + (concat + ;; "\n" + "\n" + "" + )) + +(setq blog-header + (concat + " ")) + + + +(setq blog-footer + "
\n +

RSS +License: CC BY-SA 4.0") - :html-head-include-default-style nil - :html-head-include-scripts nil) - ("org-static" - :base-directory ,root-dir - :base-extension "css\\|js\\|png\\|gif\\|pdf\\|mp3\\|ogg\\|swf\\|el\\|pl" - :publishing-directory ,publish-dir - :recursive t - :publishing-function org-publish-attachment - :table-of-contents nil) - ("org" :components ("org-notes" "org-static")))) - - -(org-publish-project "org" force-publish) + ("blog-pages" + ;; publishing + :base-directory ,root-dir + :base-extension "org" + :publishing-directory ,publish-dir + :recursive nil + :publishing-function org-html-publish-to-html + + ;; html style + :htlm-link-home "/" + ;; disable home/up div + :html-home/up-format "" + :html-link-home "" + :html-link-up "" + ;; + :html-head nil + :html-head-include-default-style nil + :html-head-include-scripts nil + :html-head-extra ,blog-extra-head + :html-preamble ,blog-header + :html-postamble ,blog-footer) + + ("blog-posts" + ;; publishing + :base-directory ,(concat root-dir "/posts") + :base-extension "org" + :publishing-directory ,(concat publish-dir "/posts") + :recursive t + :publishing-function org-html-publish-to-html + + ;; html style + :html-link-home "/" + ;; disable Home/Up + :html-home/up-format "" + :html-link-up "" + :html-link-home "" + ;; Add css file, preamble and posamble + :html-head nil + :html-head-include-default-style nil + :html-head-include-scripts nil + :html-head-extra ,blog-extra-head + :html-preamble ,blog-header + :html-postamble ,blog-footer + + ;; sitemap + :auto-sitemap t + :sitemap-filename "sitemap.org" + :sitemap-title "Sitemap" + ) + + ("blog-css" + :base-directory ,(concat root-dir "/css") + :base-extension ".*" + :publishing-directory ,(concat publish-dir "/css") + :publishing-function org-publish-attachment + :recursive t) + ("blog-cgi" + :base-directory ,(concat root-dir "/cgi-bin") + :base-extension ".*" + :publishing-directory ,(concat publish-dir "/cgi-bin") + :publishing-function org-publish-attachment + :recursive t) + ("blog" :components ("blog-pages" "blog-posts" "blog-css" "blog-cgi")))) + +(org-publish-project "blog" force-publish) ;; (provide 'blog) (kill-emacs 0)