
* Add a reference from the community page to the bug reports page. * Make it possible to subscribe to lists right from the community page. Improve the email input boxes with placeholder text and a short explanation on hovering.
35 lines
1.5 KiB
Racket
35 lines
1.5 KiB
Racket
#lang meta/web
|
|
|
|
(require "resources.rkt" "people.rkt" "irc.rkt"
|
|
"../minis/lists.rkt" "../minis/bugs.rkt"
|
|
"../stubs/blog.rkt" "../stubs/git.rkt"
|
|
(prefix-in pre: "../stubs/pre.rkt"))
|
|
|
|
(provide community)
|
|
(define community
|
|
@page[#:part-of 'community]{
|
|
@mailing-lists-quick
|
|
@irc-quick
|
|
@parlist[@strong{PLT Scheme Inc.}
|
|
@text{@blog — announcements, helpful hints, and thoughtful rants.}
|
|
@text{@a[href: "http://twitter.com/#!/racketlang"]{Twitter}
|
|
— random racket bits.}
|
|
@text{@people — the people behind Racket.}]
|
|
@parlist[@strong{Development}
|
|
@text{@git (also available on
|
|
@a[href: "http://github.com/plt/racket/"]{GitHub}).}
|
|
@text{@pre:installers and @pre:index{more}.}
|
|
@text{@bug-reports — create and query existing reports.}]
|
|
@parlist[@strong{Support}
|
|
@text{
|
|
Thanks to @a[href: "http://www.nsf.gov/"]{the NSF},
|
|
@a[href: "http://www.darpa.mil/"]{DARPA},
|
|
the @a[href: "http://www.ed.gov/FIPSE/"]{Fund for the Improvement of Postsecondary Education (FIPSE)}
|
|
at the @a[href: "http://www.ed.gov/"]{US Department of Education},
|
|
the @a[href: "http://www.exxonmobil.com/Corporate/community_foundation.aspx"]{Exxon Foundation},
|
|
CORD,
|
|
partners of the Academy of Information Technology,
|
|
@a[href: "http://microsoft.com"]{Microsoft},
|
|
@a[href: "http://mozilla.org"]{Mozilla},
|
|
and @a[href: "http://google.com"]{Google} for their generous support over the years.}]})
|