
Also get rid of the defunct "chronology" link at the bottom of the community page. It was a very old (pre-svn/git) leftover from a time where that was relevant for people who want to participate.
20 lines
647 B
Racket
20 lines
647 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|.}]})
|