summaryrefslogtreecommitdiffstats
path: root/src/downloads.sxml
blob: 94c93aceee00cf4861027d83cf82f92f3d1e12e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;; -*- mode: scheme; -*-
((title . "downloads")
 (versions . ("master" "0.2.0" "0.1.0")))

`((ul
   ,@(map (lambda (version)
            `(li ,version ": "
                 (a (@ (href "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-"
                             ,version ".tar.gz"))
                    "tar.gz")
                 ", "
                 (a (@ (href "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-"
                             ,version ".zip"))
                    "zip")))
          ($ 'versions))))