summaryrefslogtreecommitdiffstats
path: root/articles/project.el
diff options
context:
space:
mode:
Diffstat (limited to 'articles/project.el')
-rw-r--r--articles/project.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/articles/project.el b/articles/project.el
new file mode 100644
index 0000000..5c65cfc
--- /dev/null
+++ b/articles/project.el
@@ -0,0 +1,18 @@
+(require 'org-publish)
+
+(load "../common.el")
+
+(setq org-publish-use-timestamps-flag t
+ org-publish-project-alist
+ '(("blog"
+ :base-directory "./"
+ :publishing-directory "../_publish/articles/"
+ :recursive nil
+ :base-extension "org"
+ :publishing-function org-html-publish-to-html
+ :section-numbers nil
+ :table-of-contents nil
+ :html-doctype "<!DOCTYPE html>"
+ :html-head "<link href=\"https://ryuslash.org/org.css\" type=\"text/css\" rel=\"stylesheet\" />"
+ :html-link-up "../blog.html"
+ :html-link-home "/")))