︙ | | |
22
23
24
25
26
27
28
29
30
31
|
22
23
24
25
26
27
28
29
30
31
32
|
+
|
;; -------------------------------------------------------------------------
;; Provides functions for displaying content in HTML templates.
(require pollen/core
pollen/template
pollen/decode
racket/string
txexpr
openssl/sha1
"dust.rkt")
|
︙ | | |
54
55
56
57
58
59
60
61
62
63
64
|
55
56
57
58
59
60
61
62
63
64
|
-
|
<img src="/web-extra/logo.png" height="103" width="129" class="logo">
<h1>The Local Yarn</h1>
</header></a>})
(define (html$-article-open title? title-html-flow published)
(define published (select-from-metas 'published (current-metas)))
(cond
[title?
◊string-append{<article class="with-title hentry">
<h1 class="entry-title">◊|title-html-flow|</h1>
<p class="time"><a href="#" class="rel-bookmark">
|
︙ | | |
75
76
77
78
79
80
81
82
83
84
85
|
75
76
77
78
79
80
81
82
83
84
85
|
-
+
|
(define (html$-article-close footertext)
(cond [(non-empty-string? footertext)
◊string-append{</section>
<footer class="article-info"><span class="x">(</span>◊|footertext|<span class="x">)</span></footer>
</article>}]
[else "</article>"]))
[else "</section></article>"]))
(define (html$-page-body-close)
◊string-append{<footer>By Joel Dueck</footer>
</main></body>})
|
︙ | | |
103
104
105
106
107
108
109
110
111
112
113
114
|
103
104
105
106
107
108
109
110
111
112
113
114
|
-
-
+
+
|
(cond [(non-empty-string? disposition-mark)
`(span [[class "disposition-mark"]] ,disposition-mark)]
[else ""]))
(define body-elems
(cond
[(equal? 'p first-tag)
(cons (txexpr 'p first-attrs (cons disposition first-elems)) (cdr elems))]
[(block-txexpr? (car elems))
(cons (txexpr first-tag first-attrs (cons disposition first-elems)) (cdr elems))]
[else
(cons disposition elems)]))
(string-append* (map ->html body-elems)))
(define (html$-note-listing-full pagenode note-id title-html-flow date contents [author default-authorname] [author-url ""])
|
︙ | | |