18 lines
726 B
EmacsLisp
18 lines
726 B
EmacsLisp
(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 "/")))
|