removed additinalPage for COTW

This commit is contained in:
Philip Ahlqvist 2022-12-30 13:13:35 +01:00
parent e1408d965d
commit d626b12d96

View file

@ -6,7 +6,6 @@ module.exports = {
const now = new Date().toLocaleDateString('en-US', { weekday: 'long', year: 'numeric', month: 'short', day: 'numeric' }); const now = new Date().toLocaleDateString('en-US', { weekday: 'long', year: 'numeric', month: 'short', day: 'numeric' });
const projects = await rp('https://raw.githubusercontent.com/LBRYFoundation/Awesome-LBRY/master/README.md') const projects = await rp('https://raw.githubusercontent.com/LBRYFoundation/Awesome-LBRY/master/README.md')
const cotw = await rp('https://lbry.pigg.es/cotw.md')
return [ return [
{ {
title: 'Awesome LBRY Projects', title: 'Awesome LBRY Projects',
@ -14,11 +13,6 @@ module.exports = {
editLink: true, editLink: true,
editLinkPattern: ':LBRYFoundation/Awesome-LBRY', editLinkPattern: ':LBRYFoundation/Awesome-LBRY',
content: projects content: projects
},
{
title: 'Creator of the Week',
path: '/governance/creators-council/cotw/',
content: `# Creator Of The Week\nHere's a list of every channel that have been the creator of the week.\n\n*This page was last updated **${now}***\n\n${cotw}`
} }
] ]
} }