mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 04:14:39 -05:00
new about section :3
This commit is contained in:
parent
8ccbe3e182
commit
97e6d472f0
1 changed files with 15 additions and 1 deletions
14
server.js
14
server.js
|
@ -430,6 +430,8 @@ app.get("/search", async (req, res) => {
|
||||||
|
|
||||||
app.get("/channel/", async (req, res) => {
|
app.get("/channel/", async (req, res) => {
|
||||||
const ID = req.query.id;
|
const ID = req.query.id;
|
||||||
|
const tab = req.query.tab;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// about
|
// about
|
||||||
|
@ -442,11 +444,23 @@ app.get("/channel/", async (req, res) => {
|
||||||
const c = await channel.text();
|
const c = await channel.text();
|
||||||
const tj = JSON.parse(toJson(c));
|
const tj = JSON.parse(toJson(c));
|
||||||
|
|
||||||
|
const summary = await wiki.summary(k.Channel.Metadata.Name);
|
||||||
|
|
||||||
|
var w = "";
|
||||||
|
if (summary.title === "Not found.") {
|
||||||
|
w = "none";
|
||||||
|
}
|
||||||
|
if (summary.title !== "Not found.") {
|
||||||
|
w = summary;
|
||||||
|
}
|
||||||
|
|
||||||
const { Subscribers: subscribers } = k.Channel.Metadata;
|
const { Subscribers: subscribers } = k.Channel.Metadata;
|
||||||
renderTemplate(res, req, "channel.ejs", {
|
renderTemplate(res, req, "channel.ejs", {
|
||||||
ID: ID,
|
ID: ID,
|
||||||
|
tab: tab,
|
||||||
j: k,
|
j: k,
|
||||||
tj: tj,
|
tj: tj,
|
||||||
|
wiki: w,
|
||||||
about: k.Channel.Contents.ItemSection.About,
|
about: k.Channel.Contents.ItemSection.About,
|
||||||
subs:
|
subs:
|
||||||
typeof subscribers === "string"
|
typeof subscribers === "string"
|
||||||
|
|
Loading…
Reference in a new issue