jcguu95 / jcguu95.github.io

personal website

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Deprecated

I no longer use github and org-mode to host my website starting [2022-10-23]. You can find my new website here.

Doc

This is the new site I created using org-mode and org-publish. Run the following elisp code, and run M-x org-publish in the current file.

(require 'ox-publish)
(setq org-publish-project-alist
      '(("org-notes"
         :base-directory "./src/"
         :base-extension "org"
         :publishing-directory "./"
         :recursive t
         :publishing-function org-html-publish-to-html
         :headline-levels 4
         :auto-preamble t
         :auto-sitemap t)
        ("org-static"
         :base-directory "./src/"
         :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
         :publishing-directory "./"
         :recursive t
         :publishing-function org-publish-attachment)
        ("org" :components ("org-notes" "org-static"))))

About

personal website


Languages

Language:CSS 100.0%