We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a9851 commit 006f315Copy full SHA for 006f315
src/main.lisp
@@ -26,11 +26,11 @@
26
(with-standard-io-syntax
27
(read in))))
28
29
-(defparameter lang (read-lang-lisp "/home/davd/clisp/be-it/src/lang.en.lisp"))
+(defparameter *lang* (read-lang-lisp "/home/davd/clisp/be-it/src/lang.en.lisp"))
30
31
(defun lang-get (key)
32
"Get the translation for the given key."
33
- (getf lang key))
+ (getf *lang* key))
34
35
;; DEFINE WEB PAGE COMPONENTS
36
@@ -48,7 +48,7 @@
48
49
(defmacro with-page ((&key title) &body body)
50
`(spinneret:with-html
51
- (:doctype)
+ (:doctype)
52
(:html
53
(:head
54
(:link :href "./resources/css/cv.css" :rel "stylesheet" :type "text/css")
0 commit comments