
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).
6 lines
208 B
Racket
6 lines
208 B
Racket
#lang racket/base
|
|
|
|
(require "index.rkt" "download.rkt" "community.rkt" "learning.rkt" "help.rkt"
|
|
"new-name.rkt" "guidelines.rkt")
|
|
(provide (rename-out [index main]) download community learning help)
|