Welcome to skew.ch!
Table of Contents
1. Welcome
Welcome to my website! Most of the stuffs are still work in progress.
2. About Me
I host public services on genit.al. The list of services are as follows:
3. Contents
4. Note
This website has been generated from Emacs Orgmode documents. The following code is used to automatically generate the public files.
;; Use Ctrl+c Ctrl+c to run this code block
;; #+begin_src emacs-lisp :results silent
(setq org-publish-project-alist
'(("org" :components ("website" "css" "images")) ;; List of all components to publish. The first component is "website", which is the one just below this line.
("website"
:base-directory "./" ;; My website source code location
:base-extension "org"
:publishing-directory "../../public_html/" ;; Actual outputs generated from this file are stored in another directory
:recursive t
:publishing-function org-html-publish-to-html
:headline-levels 4
:auto-preamble t
:exclude-tags ("noexport")
:html-head "<link rel=\"stylesheet\" type=\"text/css\" href=\"/res/styles.css\"/>"
)
("css"
:base-directory "../css" ;; My website stylesheet location
:base-extension "css"
:publishing-directory "../../public_html/res"
:recursive t
:publishing-function org-publish-attachment
)
("images"
:base-directory "./" ;; My website stylesheet location
:base-extension "png"
:publishing-directory "../../public_html/"
:recursive t
:publishing-function org-publish-attachment
)
))
(org-publish-all t)
;; #+end_src