-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.lisp
More file actions
57 lines (54 loc) · 2.69 KB
/
faq.lisp
File metadata and controls
57 lines (54 loc) · 2.69 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
;;; TODO: once the structure is clear,
;;; write some Lisp code to generate the TOC automatically.
(tvar
(%level1% '|faq|
%tagline% "I am happy to answer your questions about Italian"
%title% "Antonio Bonifati's Italian language FAQ"
%content%
(article :id "top_article"
(section
(header
(h1 :class "h2" "Italian language FAQ")
(h2 :class "h3" "Question index")
(nav
(ul :class "faq-list"
(li
"Your question here... just "
(a :href "contact.html" "send it by email") ".")
(li :class "question answer-at" :id "Q:-unque"
(a :href "#A:-unque" "What does the suffix " (i "-unque") " mean?"))
(li :class "question answer-at" :id "Q:spesa"
(a :href "#A:spesa" "What's the difference between "
(i "fare la spesa") " and " (i "fare spese") "?"))))))
(section
(header
(h1 :class "h3" "Questions & answers"))
(article :id "A:-unque" :class "faq"
(h1 :class "question"
(a :href "#Q:-unque" "What does the suffix " (i "-unque") " mean?"))
(p :class "answer" "It means " (i "any") " or " (i "ever") ". E.g. "
(i "come") " is " (i "how") " and " (i "comunque") " means "
(i "however") " or " (i "anyhow") ". " (i "Dove") " is " (i "where")
" and " (i "dovunque") " translates to " (i "anywhere") " or "
(i "wherever") ". " (i "Quale") " is " (i "what") " and "
(i "qualunque") " means just " (i "any") ", " (i "-unque")
" is not a word that can be used alone, but only a word ending. "
(i "Anything") " or " (i "whatever") " is " (i "qualunque cosa")
", the word for " (i "thing") " is " (i "cosa") ". "
(i "Chi") " is " (i "who") " and " (i "chiunque") " means "
(i "whoever") ". " (i "I'm not just anyone") ", "
(i "Non sono uno qualunque") " (" (i "not am one any") ").")
(p "You can also find " (i "-unque") " in other words, e.g. "
(i "dunque") ". Here the prefix is just " (i "d")
" and does not have any meaning by itself. In this case just learn that this word as a connector (" (i "conjuction")
" in grammar jargon) means " (i "therefore") ", " (i "so") "."))
(article :id "A:spesa" :class "faq"
(h1 :class "question"
(a :href "#Q:spesa" "What's the difference between "
(i "fare la spesa") " and " (i "fare spese") "?"))
(p :class "answer" (i "Shopping") " has no plural in English, but "
(i "spesa") " has a plural: " (i "spese") ". " (i "Far(e) la spesa")
" is grocery shopping, while " (i "far(e) spese/compere/acquisti")
" is shopping for clothes etc.")))))
(echo
(inc "layouts/default.lisp")))