-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.el
29 lines (21 loc) · 1014 Bytes
/
config.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;; --- Main configurations for your project
(setq author "Author")
(setq email "[email protected]")
(setq custom-timestamp-format "%Y-%m-%d")
;; Default HTML to include at the top if #+options: html-preamble:t
(setq custom-html-preamble-format
'(("en" "Published %d")))
;; Default HTML to include at the footer if #+options: html-postamble:t
(setq custom-html-postamble-format
'(("en" "© %a. Contact me at <%e>")))
;; Custom HTML to include inside <head>
(setq custom-html-head "\
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
<link rel=\"stylesheet\" href=\"/static/t.css\"/>")
;; Custom HTML to build a navigation bar (only applies when :html-link-home is non-nil)
(setq custom-html-nav "\
<nav><a href=\"/\" tabindex=\"0\">↩ Back to Index</a></nav>")
;; List of extensions considered static files
(setq static-extensions "css\\|svg\\|csv\\|png\\|jpg\\|jpeg\\|gif")
;; Other static files to include explicitly
(setq static-include '(".htaccess"))