added cotw list page

This commit is contained in:
Philip Ahlqvist 2022-12-23 14:08:08 +01:00
parent 8edda56020
commit babeec2c5a

View file

@ -1,17 +1,25 @@
const rp = require('request-promise'); const rp = require('request-promise');
module.exports = { module.exports = {
// Add pages from other locations // Add pages from other locations
async additionalPages () { async additionalPages () {
const projects = await rp('https://raw.githubusercontent.com/LBRYFoundation/Awesome-LBRY/master/README.md') const now = new Date().toLocaleDateString('en-US', { weekday: 'long', year: 'numeric', month: 'short', day: 'numeric' });
return [
{ const projects = await rp('https://raw.githubusercontent.com/LBRYFoundation/Awesome-LBRY/master/README.md')
title: 'Awesome LBRY Projects', const cotw = await rp('https://lbry.pigg.es/cotw.md')
path: '/projects/', return [
editLink: true, {
editLinkPattern: ':LBRYFoundation/Awesome-LBRY', title: 'Awesome LBRY Projects',
content: projects path: '/projects/',
} editLink: true,
] editLinkPattern: ':LBRYFoundation/Awesome-LBRY',
} 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}`
}
]
}
} }