webpage

my webpage huuuh????
git clone git://fozunja.glamour.ovh/webpage
Log | Files | Refs

redirects.ss (275B)


      1 (define url
      2   (case argv2
      3     ("index" "index.xhtml")))
      4 
      5 (!html
      6   (head
      7     (title "redirect:" argv2)
      8     (meta 'http-equiv "refresh"
      9           'content `("0; url=" ,url)))
     10   (body
     11     "If you were not redirected automatically please follow this: "
     12     (a* 'href url argv2)))