blob: 0bde0fea3186512cc4655ddbfa3f462799e08189 (
plain)
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
|
;;; Copyright © 2019 Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org>
;;;
;;; This program is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU General Public License as
;;; published by the Free Software Foundation; either version 3 of the
;;; License, or (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;; General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
;;; Commentary:
;;;
;;; A number of utility procedure to aid in writing SXML by hand.
;;;
;;; Code:
(define-module (jakob utils sxml)
#:export (hyperlink
image
stylesheet
script))
(define (hyperlink target text)
`(a (@ (href ,target)) ,text))
(define* (image file-name #:optional description)
(let ((src (string-append "/static/image/" file-name)))
(if description
`(img (@ (src ,src) (alt ,description) (title ,description)))
`(img (@ (src ,src))))))
(define (stylesheet file-name)
`(link (@ (rel "stylesheet") (href ,(format #f "/static/css/~a" file-name)))))
(define (script file-name)
(let ((src (string-append "/static/js/" file-name)))
`(script (@ (src ,src)))))
|
© 2015 - 2026 Jakob L. Kreuze