h(
"p",
{ class: "muted" },
- `Create an account below to unlock the private /${options.memberBoard.slug}/ board.`,
+ "Exclusive invite-only community, participate in the /g/ board",
+ //`Create an account below to unlock the private /${options.memberBoard.slug}/ board.`,
),
- h("section", { class: "board-requests" }, [
- h(
- "details",
- { class: "request-panel", open: requestDetailsOpen || options.requests.length > 0 },
- [
- h("summary", null, "Community board requests"),
- h("div", { class: "requests-body" }, [
- h(BoardRequestForm, { defaults: options.requestFormDefaults }),
- h("div", { class: "request-list-container" }, [
- h("h2", null, "Active requests"),
- h(BoardRequestList, { requests: options.requests }),
- ]),
- ]),
- ],
- ),
- ]),
- h(AuthPanel, {
- currentUser: options.currentUser,
- memberBoard: options.memberBoard,
- activeForm: options.activeAuthForm,
- loginPrefill: options.loginPrefill,
- registerPrefill: options.registerPrefill,
- }),
+ // REQUEST FORM (TEMPORARILY HIDDEN)
+ // h("section", { class: "board-requests" }, [
+ // h(
+ // "details",
+ // { class: "request-panel", open: requestDetailsOpen || options.requests.length > 0 },
+ // [
+ // h("summary", null, "Community board requests"),
+ // h("div", { class: "requests-body" }, [
+ // h(BoardRequestForm, { defaults: options.requestFormDefaults }),
+ // h("div", { class: "request-list-container" }, [
+ // h("h2", null, "Active requests"),
+ // h(BoardRequestList, { requests: options.requests }),
+ // ]),
+ // ]),
+ // ],
+ // ),
+ // ]),
+
+ // SIGN IN / REGISTER FOR MEMBER BOARD (TEMPORARILY HIDDEN)
+ // h(AuthPanel, {
+ // currentUser: options.currentUser,
+ // memberBoard: options.memberBoard,
+ // activeForm: options.activeAuthForm,
+ // loginPrefill: options.loginPrefill,
+ // registerPrefill: options.registerPrefill,
+ // }),
h(PopularPosts, { posts: options.popularPosts }),
h(
"footer",