racket/collects/meta/web/www/community.rkt
Eli Barzilay 667c682c2b Better filename conventions: "main.rkt"s that would just require the
necessary modules are now "all.rkt"s; "shard.rkt"s turn to
"resources.rkt".

Also, "navbar.rkt" changes to "all.rkt", since it was doing the same
thing (in addition to setting the navbar).
2010-10-26 16:09:16 -04:00

24 lines
779 B
Racket

#lang meta/web
(require "resources.rkt" "people.rkt" "irc.rkt"
"../minis/lists.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{@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|.}
;;TODO: proper reference
@a[href: "http://download.racket-lang.org/chronology/"]{
Release Announcements}
]})