summaryrefslogtreecommitdiffstats
path: root/src/index.sxml
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2013-02-12 22:23:48 +0100
committerGravatar Tom Willemsen2013-02-12 22:23:48 +0100
commit4e8b7fe422ea8a5753603e47a8c4bd98470a777d (patch)
treebb8ccf742055f09daf933794e1a4d36af10902a8 /src/index.sxml
downloadmarkam-4e8b7fe422ea8a5753603e47a8c4bd98470a777d.tar.gz
markam-4e8b7fe422ea8a5753603e47a8c4bd98470a777d.zip
Initial site
Diffstat (limited to 'src/index.sxml')
-rw-r--r--src/index.sxml78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/index.sxml b/src/index.sxml
new file mode 100644
index 0000000..afcf0ee
--- /dev/null
+++ b/src/index.sxml
@@ -0,0 +1,78 @@
+;; -*- mode: scheme; -*-
+((title . "Markam")
+ (conkeror . (a (@ (href "http://conkeror.org")) "Conkeror"))
+ (chicken . (a (@ (href "http://call-cc.org")) "CHICKEN scheme"))
+ (chicken-sqlite . (a (@ (href "http://wiki.call-cc.org/eggref/4/sqlite3")) "sqlite3"))
+ (tar-gz
+ . "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-0.1.0.tar.gz")
+ (zip
+ . "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-0.1.0.zip")
+ (dev-tar-gz
+ . "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-master.tar.gz")
+ (dev-zip
+ . "http://code.ryuslash.org/cgit.cgi/markam/snapshot/markam-master.zip"))
+
+`((div (@ (class "page-header"))
+ (h1 ,($ 'title)
+ (small ", store bookmarks")))
+ (div (@ (class "hero-unit"))
+ (p "Store bookmarks without being stuck to a single browser.")
+ (div (@ (class "row"))
+ (div (@ (class "span3 centered"))
+ (h3 "Version")
+ "0.1.0")
+ (div (@ (class "span4 centered"))
+ (h3 "Language")
+ ,($ 'chicken))
+ (div (@ (class "span3 centered"))
+ (h3 "License")
+ "GPLv3")))
+ (div (@ (class "row"))
+ (div (@ (class "span6"))
+ (h2 "Features")
+ (ul
+ (li "Save and tag bookmarks.")
+ (li "Search bookmarks by title and tags.")
+ (li "Use it directly from " ,($ 'conkeror) ":"
+ (ul
+ (li "Save the current website or a link on the "
+ "current page.")
+ (li "Search through saved bookmarks and open one "
+ "directly, either in the current window or a new "
+ "one.")))))
+ (div (@ (class "span6"))
+ (h2 "Dependencies")
+ (dl
+ (dt ,($ 'chicken))
+ (dd "Markam has been developed with Version 4.8.0.1, but "
+ "if it doesn't work with your version of "
+ ,($ 'chicken) ", please let me know. It also requires "
+ "the " ,($ 'chicken-sqlite) " egg.")
+ (dt ,($ 'conkeror) " (optional)")
+ (dd "The latest git version is required. Though this is "
+ "only relevant if you want to use markam with "
+ "conkeror."))))
+ (h2 "Download")
+ (div (@ (class "row"))
+ (div (@ (class "span6"))
+ (h3 "Latest version"))
+ (div (@ (class "span6"))
+ (h3 "Development version")))
+ (div (@ (class "row"))
+ (div (@ (class "span6"))
+ (a (@ (href ,($ 'tar-gz))
+ (class "btn btn-large btn-block"))
+ "Download 0.1.0 .tar.gz")
+ (a (@ (href ,($ 'zip))
+ (class "btn btn-large btn-block"))
+ "Download 0.1.0 .zip"))
+ (div (@ (class "span6"))
+ (a (@ (href ,($ 'dev-tar-gz))
+ (class "btn btn-large btn-block"))
+ "Download .tar.gz")
+ (a (@ (href ,($ 'dev-zip))
+ (class "btn btn-large btn-block"))
+ "Download .zip")))
+ (hr)
+ (h2 "More...")
+ (p "For more information please read the README."))