summaryrefslogtreecommitdiffstats
path: root/articles/project.el
blob: eb1e89a9c5ccee6ed9eee6e683bc66f5f55c4b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(require 'ox-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
         :with-toc nil
         :html-doctype "<!DOCTYPE html>"
         :html-head "<link rel=\"stylesheet\" media=\"screen\" href=\"http://openfontlibrary.org/face/cosmic-sans-neue-mono\" type=\"text/css\" />\n<link href=\"https://ryuslash.org/org.css\" type=\"text/css\" rel=\"stylesheet\" />"
         :html-link-up "../blog.html"
         :html-link-home "/")))