;;; index.html-data
;;; Copyright (C) 2010, 2011, 2012 Thien-Thi Nguyen
;;; This file is provided under GPLv3+.
(~simple-strict-xhtml
(~head (~title "Guile-WWW"))
(~body
(~h1 "Guile-WWW")
(~hr)
(~h2 "What is it?")
(~p "Guile-WWW is a set of " (~a 'href "http://www.gnu.org/software/guile/"
"Guile")
" Scheme modules for making"
" URI requests (client side), as well as for doing"
" listener setup (INET and UNIX domain),"
" HTTP request parsing, MIME lookup, cookie handling,"
" response packing, and logging (server side)."
" Its core was originally written by " (~a 'href "HISTORY.txt"
"Tim Pierce")
"."
" It is released under the " (~a 'href "http://www.gnu.org/"
"GNU")
" " (~a 'href "http://www.gnu.org/licenses/#GPL"
"GPLv3+")
" along with a manual in texinfo format"
" (i.e., the source for the " (~a 'href "doc/index.html"
"online documentation")
").")
(~h2 "News")
()
(~p "("
(~a 'title "plain text NEWS excerpt with non-header comments"
'href "NEWS-excerpt"
"unabridged")
")")
(~h2 "Hacking")
(~p "Check out the " (~a 'href "http://savannah.nongnu.org/projects/guile-www/"
"project page")
" on " (~a 'href "http://savannah.nongnu.org/"
"savannah (nongnu)")
".")
(~hr)
(~p (copyright-since 2010))
(~p (strftime "Updated: %F %R UTC" (gmtime (current-time)))
" " (~~source "NEWS-excerpt"
"index.html-data"
"common.scm"
"GNUmakefile"))))
;;; index.html-data ends here