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