change htmlize
[blog.git] / my-publish.el
index cd0f340..7f0cd31 100644 (file)
@@ -28,6 +28,7 @@
 
 (require 'org)
 (require 'ox-publish)
+(require 'htmlize)
 
 ;; To prevent inline-css when exporting html. will use external css
 (setq org-html-htmlize-output-type 'css)
@@ -45,9 +46,9 @@
        "<h1><a href= '/' >Peng Li</a></h1>"
        "<hr>"
        "<nav><ul>"
-       "<li><a href= '/' >About</a></li>"
-       "<li><a href= '/blog.html' >Blog</a></li>"
-       "<li><a href= '/home.html' >Home</a></li>"
+       "<li><a href= '/about.html' >About</a></li>"
+       "<li><a href= '/posts/sitemap.html' >Blog</a></li>"
+       "<li><a href= '/index.html' >Home</a></li>"
        "</ul></nav>"
        "</header>"))
 
@@ -67,7 +68,6 @@ License: <a href= \"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA 4
   (setq org-publish-project-alist
        `(
          ("blog-pages"
-          ;; publishing
           :base-directory ,root-dir
           :base-extension "org"
           :publishing-directory ,output-dir
@@ -89,7 +89,6 @@ License: <a href= \"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA 4
           :html-postamble ,blog-footer)
 
          ("blog-posts"
-          ;; publishing
           :base-directory ,(concat root-dir "/posts")
           :base-extension "org"
           :publishing-directory ,(concat output-dir "/posts")