forked from cadence/breezewiki
?
This commit is contained in:
parent
80459eccad
commit
7d8763b308
1 changed files with 9 additions and 5 deletions
|
@ -51,8 +51,8 @@
|
|||
`(div
|
||||
(p
|
||||
,(if (non-empty-string? video-embed-code)
|
||||
`(span (a (@ (href ,(u-proxy-url raw-image-url))) "View original file") ". ")
|
||||
`(return-no-element))
|
||||
`""
|
||||
`(span (a (@ (href ,(u-proxy-url raw-image-url))) "View original file") ". "))
|
||||
"Added by "
|
||||
(a (@ (href ,(u-proxy-url user-page-url))) ,username)
|
||||
"."
|
||||
|
@ -62,10 +62,14 @@
|
|||
(λ (article)
|
||||
(define page-path (jp "/title" article))
|
||||
(define title (jp "/titleText" article page-path))
|
||||
`(a (@ (href ,(format "/~a/wiki/~a" wikiname page-path)))
|
||||
,title))
|
||||
`(span
|
||||
(a (@ (href ,(format "/~a/wiki/~a" wikiname page-path)))
|
||||
,title)
|
||||
`(if (eq? (car smaller-article-list) article))
|
||||
""
|
||||
", "))
|
||||
smaller-article-list))
|
||||
`(if (= article-list-is-smaller 1)
|
||||
`(if (eq? article-list-is-smaller 1)
|
||||
"…"
|
||||
"."))))
|
||||
; ,(update-tree-wiki image-description wikiname)
|
||||
|
|
Loading…
Reference in a new issue